1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/include/lsm303dlhc: Repair header file include guards

This commit is contained in:
Alexandru Caciulescu 2015-03-23 22:06:13 +02:00
parent 81787154d0
commit 7d68efcc38

View File

@ -18,8 +18,8 @@
* @author Thomas Eichinger <thomas.eichinger@fu-berlin.de>
*/
#ifndef __LSM303DLHC_H
#define __LSM303DLHC_H
#ifndef LSM303DLHC_H
#define LSM303DLHC_H
#include <stdint.h>
#include "periph/i2c.h"
@ -213,5 +213,5 @@ int lsm303dlhc_disable(lsm303dlhc_t *dev);
}
#endif
#endif /* __LSM303DLHC_H */
#endif /* LSM303DLHC_H */
/** @} */