summaryrefslogtreecommitdiff
path: root/nuttx/arch/sh/include/m16c/irq.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/sh/include/m16c/irq.h')
-rw-r--r--nuttx/arch/sh/include/m16c/irq.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/arch/sh/include/m16c/irq.h b/nuttx/arch/sh/include/m16c/irq.h
index dc7a43693..ad7e43ad9 100644
--- a/nuttx/arch/sh/include/m16c/irq.h
+++ b/nuttx/arch/sh/include/m16c/irq.h
@@ -45,7 +45,7 @@
************************************************************************************/
#include <nuttx/config.h>
-#include <sys/types.h>
+#include <stdint.h>
/************************************************************************************
* Definitions
@@ -249,13 +249,13 @@ struct xcptcontext
/* These are saved copies of LR and SR used during signal processing. */
- ubyte saved_pc[2];
- ubyte saved_flg;
+ uint8_t saved_pc[2];
+ uint8_t saved_flg;
#endif
/* Register save area */
- ubyte regs[XCPTCONTEXT_SIZE];
+ uint8_t regs[XCPTCONTEXT_SIZE];
};
#endif