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

cpu/cortexm_common: fix include guards.

This commit is contained in:
zhuoshuguo 2016-11-16 11:45:03 +01:00
parent 8432d923be
commit a60fa5b8d3
3 changed files with 9 additions and 9 deletions

View File

@ -38,8 +38,8 @@
#pragma clang system_header /* treat file as system include file */
#endif
#ifndef __CORE_CMFUNC_H
#define __CORE_CMFUNC_H
#ifndef CORE_CMFUNC_H
#define CORE_CMFUNC_H
#ifdef __cplusplus
extern "C" {
@ -91,4 +91,4 @@
}
#endif
#endif /* __CORE_CMFUNC_H */
#endif /* CORE_CMFUNC_H */

View File

@ -38,8 +38,8 @@
#pragma clang system_header /* treat file as system include file */
#endif
#ifndef __CORE_CMINSTR_H
#define __CORE_CMINSTR_H
#ifndef CORE_CMINSTR_H
#define CORE_CMINSTR_H
#ifdef __cplusplus
extern "C" {
@ -91,4 +91,4 @@
}
#endif
#endif /* __CORE_CMINSTR_H */
#endif /* CORE_CMINSTR_H */

View File

@ -38,8 +38,8 @@
#pragma clang system_header /* treat file as system include file */
#endif
#ifndef __CORE_CMSIMD_H
#define __CORE_CMSIMD_H
#ifndef CORE_CMSIMD_H
#define CORE_CMSIMD_H
#ifdef __cplusplus
extern "C" {
@ -93,4 +93,4 @@
}
#endif
#endif /* __CORE_CMSIMD_H */
#endif /* CORE_CMSIMD_H */