]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RX600_RX62N-RDK_GNURX/RTOSDemo/stdint.h
Minor updates to demo projects to ensure correct building with V8 rc1.
[freertos] / FreeRTOS / Demo / RX600_RX62N-RDK_GNURX / RTOSDemo / stdint.h
1 \r
2 #ifndef STDINT_INC\r
3 #define STDINT_INC\r
4 \r
5 /* This file will get picked up when stdint.h does not appear in the default\r
6 include path (which it doesn't seem to be - even though the file exists). */\r
7 \r
8 typedef signed char int8_t;\r
9 typedef unsigned char uint8_t;\r
10 typedef short int16_t;\r
11 typedef unsigned short uint16_t;\r
12 typedef long int32_t;\r
13 typedef unsigned long uint32_t;\r
14 \r
15 #endif /* STDINT_INC */\r