summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/cortexm3/up_copystate.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/src/cortexm3/up_copystate.c')
-rw-r--r--nuttx/arch/arm/src/cortexm3/up_copystate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/arm/src/cortexm3/up_copystate.c b/nuttx/arch/arm/src/cortexm3/up_copystate.c
index a7e7b1166..f5d4ecad2 100644
--- a/nuttx/arch/arm/src/cortexm3/up_copystate.c
+++ b/nuttx/arch/arm/src/cortexm3/up_copystate.c
@@ -39,13 +39,13 @@
#include <nuttx/config.h>
-#include <sys/types.h>
+#include <stdint.h>
#include "os_internal.h"
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
@@ -66,7 +66,7 @@
/* A little faster than most memcpy's */
-void up_copystate(uint32 *dest, uint32 *src)
+void up_copystate(uint32_t *dest, uint32_t *src)
{
int i;