]>
git.saurik.com Git - apt.git/blob - buildlib/inttypes.h.in
1 /* This is an ISO C 9X header file. We omit this copy to the include
2 directory if the local platform does not have inttypes.h, it contains
3 [u]int[8,16,32]_t fixed width types */
14 /* Generate the fixed bit size types */
17 typedef unsigned int uint32_t;
21 typedef unsigned long uint32_t;
23 # if SIZEOF_SHORT == 4
24 typedef short int32_t;
25 typedef unsigned short uint32_t;
27 # error Must have a form of 32-bit integer
34 typedef unsigned int uint16_t;
38 typedef unsigned long uint16_t;
40 # if SIZEOF_SHORT == 2
41 typedef short int16_t;
42 typedef unsigned short uint16_t;
44 # error Must have a form of 16-bit integer
49 typedef signed char int8_t;
50 typedef unsigned char uint8_t;