1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00

drivers/include/servo: Repair header file include guards

This commit is contained in:
Alexandru Caciulescu 2015-03-23 22:08:49 +02:00
parent d31f9cbb1b
commit 57dd7d35a1

View File

@ -18,8 +18,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef __SERVO_H
#define __SERVO_H
#ifndef SERVO_H
#define SERVO_H
#include "periph/pwm.h"
@ -89,5 +89,5 @@ int servo_set(servo_t *dev, unsigned int pos);
}
#endif
#endif /* __SERVO_H */
#endif /* SERVO_H */
/** @} */