1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

drivers/include/rgbled: Repair header file include guards

This commit is contained in:
Alexandru Caciulescu 2015-03-23 22:08:35 +02:00
parent 2c5164004c
commit d31f9cbb1b

View File

@ -18,8 +18,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef __RGBLED_H
#define __RGBLED_H
#ifndef RGBLED_H
#define RGBLED_H
#include "color.h"
#include "periph/pwm.h"
@ -62,5 +62,5 @@ void rgbled_set(rgbled_t *led, color_rgb_t *color);
}
#endif
#endif /* __RGBLED_H */
#endif /* RGBLED_H */
/** @} */