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

Merge pull request #6131 from zhuoshuguo/fix_cpu_include_guards

cpu/cortexm_common: fix include guards.
This commit is contained in:
Martine Lenders 2016-11-16 14:31:02 +01:00 committed by GitHub
commit ccf8c27244
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 */