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

boards/nrf6310: fixed include guards

This commit is contained in:
Hauke Petersen 2015-12-02 10:56:09 +01:00
parent d0423b26e1
commit ca05613082
2 changed files with 7 additions and 6 deletions

View File

@ -20,8 +20,8 @@
* @author Frank Holtz <frank-riot2015@holtznet.de>
*/
#ifndef __BOARD_H
#define __BOARD_H
#ifndef BOARD_H
#define BOARD_H
#include "cpu.h"
@ -77,5 +77,5 @@ void board_init(void);
}
#endif
#endif /** __BOARD_H */
#endif /** BOARD_H */
/** @} */

View File

@ -19,8 +19,8 @@
* @author Frank Holtz <frank-riot2015@holtznet.de>
*/
#ifndef __PERIPH_CONF_H
#define __PERIPH_CONF_H
#ifndef PERIPH_CONF_H
#define PERIPH_CONF_H
#ifdef __cplusplus
extern "C" {
@ -148,4 +148,5 @@ extern "C" {
}
#endif
#endif /* __PERIPH_CONF_H */
#endif /* PERIPH_CONF_H */
/** @} */