Add memtest support.
[syslinux-debian/hramrach.git] / com32 / include / bitsize32 / stdint.h
blobbdc69705b79015418821f66d90935a7e63aa62d0
1 /*
2 * bits32/stdint.h
3 */
6 typedef long long int int64_t;
8 typedef unsigned long long int uint64_t;
10 typedef int int_fast16_t;
11 typedef int int_fast32_t;
13 typedef unsigned int uint_fast16_t;
14 typedef unsigned int uint_fast32_t;
16 typedef int intptr_t;
17 typedef unsigned int uintptr_t;
19 #define __INT64_C(c) c ## LL
20 #define __UINT64_C(c) c ## ULL
22 #define __PRI64_RANK "ll"
23 #define __PRIFAST_RANK ""
24 #define __PRIPTR_RANK ""