brintos

brintos / llvm-project-archived public Read only

0
0
Text · 832 B · 8f233fd Raw
35 lines · c
1#ifndef STDINT_H2#define STDINT_H3 4// types needed by stdatomic.h5 6typedef char int_least8_t;7typedef short int_least16_t;8typedef int int_least32_t;9typedef long long int int_least64_t;10typedef unsigned char uint_least8_t;11typedef unsigned short uint_least16_t;12typedef unsigned int uint_least32_t;13typedef unsigned long long uint_least64_t;14 15typedef char int_fast8_t;16typedef short int_fast16_t;17typedef int int_fast32_t;18typedef long long int int_fast64_t;19typedef unsigned char uint_fast8_t;20typedef unsigned short uint_fast16_t;21typedef unsigned int uint_fast32_t;22typedef unsigned long long uint_fast64_t;23 24typedef int intptr_t;25typedef unsigned int uintptr_t;26typedef int intmax_t;27typedef unsigned int uintmax_t;28 29// additional types for unwind.h30 31typedef unsigned int uint32_t;32typedef unsigned long long uint64_t;33 34#endif35