2020-03-31 12:04:53 +01:00
|
|
|
#ifndef STDINT_H_
|
|
|
|
|
#define STDINT_H_
|
|
|
|
|
|
|
|
|
|
#include <machine/_stdint.h>
|
|
|
|
|
|
|
|
|
|
typedef __int8_t int8_t;
|
|
|
|
|
typedef __uint8_t uint8_t;
|
|
|
|
|
|
|
|
|
|
typedef __int16_t int16_t;
|
|
|
|
|
typedef __uint16_t uint16_t;
|
|
|
|
|
|
|
|
|
|
typedef __int32_t int32_t;
|
|
|
|
|
typedef __uint32_t uint32_t;
|
|
|
|
|
|
|
|
|
|
typedef __int64_t int64_t;
|
|
|
|
|
typedef __uint64_t uint64_t;
|
|
|
|
|
|
|
|
|
|
typedef __intptr_t intptr_t;
|
|
|
|
|
typedef __uintptr_t uintptr_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_least8_t int_least8_t;
|
|
|
|
|
typedef __uint_least8_t uint_least8_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_least16_t int_least16_t;
|
|
|
|
|
typedef __uint_least16_t uint_least16_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_least32_t int_least32_t;
|
|
|
|
|
typedef __uint_least32_t uint_least32_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_least64_t int_least64_t;
|
|
|
|
|
typedef __uint_least64_t uint_least64_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_fast8_t int_fast8_t;
|
|
|
|
|
typedef __uint_fast8_t uint_fast8_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_fast16_t int_fast16_t;
|
|
|
|
|
typedef __uint_fast16_t uint_fast16_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_fast32_t int_fast32_t;
|
|
|
|
|
typedef __uint_fast32_t uint_fast32_t;
|
|
|
|
|
|
|
|
|
|
typedef __int_fast64_t int_fast64_t;
|
|
|
|
|
typedef __uint_fast64_t uint_fast64_t;
|
|
|
|
|
|
|
|
|
|
typedef __intmax_t intmax_t;
|
|
|
|
|
typedef __uintmax_t uintmax_t;
|
|
|
|
|
|
2020-03-31 12:55:52 +01:00
|
|
|
#endif /* STDINT_H_ */
|