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

drivers/pcd8544: fixed include guard

This commit is contained in:
Hauke Petersen 2015-12-02 11:20:02 +01:00
parent 349d333ede
commit 81ed820528

View File

@ -19,8 +19,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef __PDC8544_H
#define __PDC8544_H
#ifndef PDC8544_H
#define PDC8544_H
#include <stdint.h>
@ -198,5 +198,5 @@ void pcd8544_riot(pcd8544_t *dev);
}
#endif
#endif /* __PDC8544_H */
#endif /* PDC8544_H */
/** @} */