|
| 1 | +#pragma once |
| 2 | + |
| 3 | +#include "_prelude.h" |
| 4 | + |
| 5 | +STDC_BEGIN_HEADER |
| 6 | + |
| 7 | +typedef __INT8_TYPE__ int8_t; |
| 8 | +typedef __INT16_TYPE__ int16_t; |
| 9 | +typedef __INT32_TYPE__ int32_t; |
| 10 | +typedef __INT64_TYPE__ int64_t; |
| 11 | + |
| 12 | +typedef __UINT8_TYPE__ uint8_t; |
| 13 | +typedef __UINT16_TYPE__ uint16_t; |
| 14 | +typedef __UINT32_TYPE__ uint32_t; |
| 15 | +typedef __UINT64_TYPE__ uint64_t; |
| 16 | + |
| 17 | +typedef __INTPTR_TYPE__ intptr_t; |
| 18 | +typedef __UINTPTR_TYPE__ uintptr_t; |
| 19 | + |
| 20 | +typedef __INTMAX_TYPE__ intmax_t; |
| 21 | +typedef __UINTMAX_TYPE__ uintmax_t; |
| 22 | + |
| 23 | +typedef __INT_LEAST8_TYPE__ int_least8_t; |
| 24 | +typedef __INT_LEAST16_TYPE__ int_least16_t; |
| 25 | +typedef __INT_LEAST32_TYPE__ int_least32_t; |
| 26 | +typedef __INT_LEAST64_TYPE__ int_least64_t; |
| 27 | + |
| 28 | +typedef __UINT_LEAST8_TYPE__ uint_least8_t; |
| 29 | +typedef __UINT_LEAST16_TYPE__ uint_least16_t; |
| 30 | +typedef __UINT_LEAST32_TYPE__ uint_least32_t; |
| 31 | +typedef __UINT_LEAST64_TYPE__ uint_least64_t; |
| 32 | + |
| 33 | +typedef __INT_FAST8_TYPE__ int_fast8_t; |
| 34 | +typedef __INT_FAST16_TYPE__ int_fast16_t; |
| 35 | +typedef __INT_FAST32_TYPE__ int_fast32_t; |
| 36 | +typedef __INT_FAST64_TYPE__ int_fast64_t; |
| 37 | + |
| 38 | +typedef __UINT_FAST8_TYPE__ uint_fast8_t; |
| 39 | +typedef __UINT_FAST16_TYPE__ uint_fast16_t; |
| 40 | +typedef __UINT_FAST32_TYPE__ uint_fast32_t; |
| 41 | +typedef __UINT_FAST64_TYPE__ uint_fast64_t; |
| 42 | + |
| 43 | +STDC_END_HEADER |
0 commit comments