]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/PIC18_MPLAB/stdint.h
Update version number in preparation for maintenance release.
[freertos] / FreeRTOS / Demo / PIC18_MPLAB / stdint.h
1 \r
2 #ifndef FREERTOS_STDINT\r
3 #define FREERTOS_STDINT\r
4 \r
5 /*******************************************************************************\r
6  * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions\r
7  * necessary to build the FreeRTOS code.  It is provided to allow FreeRTOS to be\r
8  * built using compilers that do not provide their own stdint.h definition.\r
9  *\r
10  * To use this file:\r
11  *\r
12  *    1) Copy this file into the directory that contains your FreeRTOSConfig.h\r
13  *       header file, as that directory will already be in the compilers include\r
14  *       path.\r
15  *\r
16  *    2) Rename the copied file stdint.h.\r
17  *\r
18  */\r
19 \r
20 typedef signed char int8_t;\r
21 typedef unsigned char uint8_t;\r
22 typedef short int16_t;\r
23 typedef unsigned short uint16_t;\r
24 typedef long int32_t;\r
25 typedef unsigned long uint32_t;\r
26 \r
27 #endif /* FREERTOS_STDINT */\r