dmi: check both the AC and ID flags at the same time
[syslinux.git] / com32 / include / bitsize64 / stdint.h
blob919300030100a6f4ea43fb153c38ca5894570c45
1 /*
2 * bits64/stdint.h
3 */
6 typedef long int int64_t;
8 typedef unsigned long int uint64_t;
10 typedef long int int_fast16_t;
11 typedef long int int_fast32_t;
13 typedef unsigned long int uint_fast16_t;
14 typedef unsigned long int uint_fast32_t;
16 typedef long int intptr_t;
17 typedef unsigned long int uintptr_t;
19 #define __INT64_C(c) c ## L
20 #define __UINT64_C(c) c ## UL
22 #define __PRI64_RANK "l"
23 #define __PRIFAST_RANK "l"
24 #define __PRIPTR_RANK "l"