summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/include/cortexm3/syscall.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/include/cortexm3/syscall.h')
-rw-r--r--nuttx/arch/arm/include/cortexm3/syscall.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/nuttx/arch/arm/include/cortexm3/syscall.h b/nuttx/arch/arm/include/cortexm3/syscall.h
index 4c5eb6556..bf61d7ee8 100644
--- a/nuttx/arch/arm/include/cortexm3/syscall.h
+++ b/nuttx/arch/arm/include/cortexm3/syscall.h
@@ -44,8 +44,11 @@
* Included Files
****************************************************************************/
- #include <nuttx/config.h>
-#include <stdint.h>
+#include <nuttx/config.h>
+
+#ifndef __ASSEMBLY__
+# include <stdint.h>
+#endif
/****************************************************************************
* Pro-processor Definitions
@@ -61,6 +64,8 @@
* Inline functions
****************************************************************************/
+#ifndef __ASSEMBLY__
+
/* SVC call with SYS_ call number and no parameters */
static inline uintptr_t sys_call0(unsigned int nbr)
@@ -221,7 +226,6 @@ static inline uintptr_t sys_call6(unsigned int nbr, uintptr_t parm1,
* Public Function Prototypes
****************************************************************************/
-#ifndef __ASSEMBLY__
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C" {
@@ -233,7 +237,7 @@ extern "C" {
#ifdef __cplusplus
}
#endif
-#endif
+#endif /* __ASSEMBLY__ */
#endif /* __ARCH_ARM_INCLUDE_CORTEXM3_SYSCALL_H */