PR rtl-optimization/82913
[official-gcc.git] / gcc / config / openbsd-stdint.h
bloba6da1da191f2f74be0f4b1771a21c4a5f0e8e8c6
1 #define SIG_ATOMIC_TYPE "int"
3 #define INT8_TYPE "signed char"
4 #define INT16_TYPE "short int"
5 #define INT32_TYPE "int"
6 #define INT64_TYPE "long long int"
7 #define UINT8_TYPE "unsigned char"
8 #define UINT16_TYPE "short unsigned int"
9 #define UINT32_TYPE "unsigned int"
10 #define UINT64_TYPE "long long unsigned int"
12 #define INT_LEAST8_TYPE "signed char"
13 #define INT_LEAST16_TYPE "short int"
14 #define INT_LEAST32_TYPE "int"
15 #define INT_LEAST64_TYPE "long long int"
16 #define UINT_LEAST8_TYPE "unsigned char"
17 #define UINT_LEAST16_TYPE "short unsigned int"
18 #define UINT_LEAST32_TYPE "unsigned int"
19 #define UINT_LEAST64_TYPE "long long unsigned int"
21 #define INT_FAST8_TYPE "int"
22 #define INT_FAST16_TYPE "int"
23 #define INT_FAST32_TYPE "int"
24 #define INT_FAST64_TYPE "long long int"
25 #define UINT_FAST8_TYPE "unsigned int"
26 #define UINT_FAST16_TYPE "unsigned int"
27 #define UINT_FAST32_TYPE "unsigned int"
28 #define UINT_FAST64_TYPE "long long unsigned int"
30 #define INTMAX_TYPE "long long int"
31 #define UINTMAX_TYPE "long long unsigned int"
33 #define INTPTR_TYPE "long int"
34 #define UINTPTR_TYPE "long unsigned int"