]>
git.saurik.com Git - apt-legacy.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 */
7 /* Generate the fixed bit size types */
10 typedef unsigned int uint32_t;
14 typedef unsigned long uint32_t;
16 # if SIZEOF_SHORT == 4
17 typedef short int32_t;
18 typedef unsigned short uint32_t;
20 # error Must have a form of 32-bit integer
27 typedef unsigned int uint16_t;
31 typedef unsigned long uint16_t;
33 # if SIZEOF_SHORT == 2
34 typedef short int16_t;
35 typedef unsigned short uint16_t;
37 # error Must have a form of 16-bit integer
42 typedef signed char int8_t;
43 typedef unsigned char uint8_t;