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

Merge pull request #6743 from aabadie/nucleo_common

boards/nucleo_common, boards/remote_common: remove extra underscore in header guard
This commit is contained in:
Alexandre Abadie 2017-03-15 16:25:39 +01:00 committed by GitHub
commit 216e685932
2 changed files with 6 additions and 6 deletions

View File

@ -18,8 +18,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef BOARD_COMMON__H
#define BOARD_COMMON__H
#ifndef BOARD_COMMON_H
#define BOARD_COMMON_H
#include "cpu.h"
#include "periph_conf.h"
@ -55,5 +55,5 @@ void board_init(void);
}
#endif
#endif /* BOARD_COMMON__H */
#endif /* BOARD_COMMON_H */
/** @} */

View File

@ -19,8 +19,8 @@
* Antonio Lignan <alinan@zolertia.com>
*/
#ifndef BOARD_COMMON__H
#define BOARD_COMMON__H
#ifndef BOARD_COMMON_H
#define BOARD_COMMON_H
#include "cpu.h"
#include "periph/gpio.h"
@ -94,5 +94,5 @@ void board_init(void);
#ifdef __cplusplus
} /* end extern "C" */
#endif
#endif /* BOARD_COMMON__H */
#endif /* BOARD_COMMON_H */
/** @} */