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 */ #pragma clang system_header /* treat file as system include file */
#endif #endif
#ifndef __CORE_CMFUNC_H #ifndef CORE_CMFUNC_H
#define __CORE_CMFUNC_H #define CORE_CMFUNC_H
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -91,4 +91,4 @@
} }
#endif #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 */ #pragma clang system_header /* treat file as system include file */
#endif #endif
#ifndef __CORE_CMINSTR_H #ifndef CORE_CMINSTR_H
#define __CORE_CMINSTR_H #define CORE_CMINSTR_H
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -91,4 +91,4 @@
} }
#endif #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 */ #pragma clang system_header /* treat file as system include file */
#endif #endif
#ifndef __CORE_CMSIMD_H #ifndef CORE_CMSIMD_H
#define __CORE_CMSIMD_H #define CORE_CMSIMD_H
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -93,4 +93,4 @@
} }
#endif #endif
#endif /* __CORE_CMSIMD_H */ #endif /* CORE_CMSIMD_H */