27 lines
623 B
C
27 lines
623 B
C
|
#ifndef _FAKELIBC_STDINT_H
|
||
|
#define _FAKELIBC_STDINT_H
|
||
|
|
||
|
typedef char int8_t;
|
||
|
typedef short int16_t;
|
||
|
typedef int int32_t;
|
||
|
typedef long long int64_t;
|
||
|
typedef unsigned char uint8_t;
|
||
|
typedef unsigned short uint16_t;
|
||
|
typedef unsigned int uint32_t;
|
||
|
typedef unsigned long long uint64_t;
|
||
|
|
||
|
typedef int64_t intptr_t;
|
||
|
typedef uint64_t uintptr_t;
|
||
|
|
||
|
typedef uint32_t uint_fast8_t;
|
||
|
typedef int32_t int_fast8_t;
|
||
|
typedef uint32_t uint_fast16_t;
|
||
|
typedef int32_t int_fast16_t;
|
||
|
typedef uint32_t uint_fast32_t;
|
||
|
typedef int32_t int_fast32_t;
|
||
|
typedef uint64_t uint_fast64_t;
|
||
|
typedef int64_t int_fast64_t;
|
||
|
|
||
|
/* From ifndef at top of file: */
|
||
|
#endif
|