summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/SuperH_SH7216_Renesas/RTOSDemo/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/SuperH_SH7216_Renesas/RTOSDemo/stdint.h')
-rw-r--r--FreeRTOS/Demo/SuperH_SH7216_Renesas/RTOSDemo/stdint.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/FreeRTOS/Demo/SuperH_SH7216_Renesas/RTOSDemo/stdint.h b/FreeRTOS/Demo/SuperH_SH7216_Renesas/RTOSDemo/stdint.h
new file mode 100644
index 000000000..30913ad0a
--- /dev/null
+++ b/FreeRTOS/Demo/SuperH_SH7216_Renesas/RTOSDemo/stdint.h
@@ -0,0 +1,15 @@
+
+#ifndef STDINT_INC
+#define STDINT_INC
+
+/* This file will get picked up when stdint.h does not appear in the default
+include path (which it doesn't seem to be - even though the file exists). */
+
+typedef signed char int8_t;
+typedef unsigned char uint8_t;
+typedef short int16_t;
+typedef unsigned short uint16_t;
+typedef long int32_t;
+typedef unsigned long uint32_t;
+
+#endif /* STDINT_INC */