Initial commit of current C compiler sources, partly rebranded but not yet properly cleaned up!
This commit is contained in:
26
fakelibc/stdint.h
Normal file
26
fakelibc/stdint.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#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
|
Reference in New Issue
Block a user