diff options
Diffstat (limited to 'amd64')
-rw-r--r-- | amd64/include/ape/inttypes.h | 21 | ||||
-rw-r--r-- | amd64/include/ape/stdint.h | 31 |
2 files changed, 31 insertions, 21 deletions
diff --git a/amd64/include/ape/inttypes.h b/amd64/include/ape/inttypes.h deleted file mode 100644 index 0ee22cca1..000000000 --- a/amd64/include/ape/inttypes.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef _SUSV2_SOURCE -#error "inttypes.h is SUSV2" -#endif - -#ifndef _INTTYPES_H_ -#define _INTTYPES_H_ 1 - - -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 long long intptr_t; -typedef unsigned long long uintptr_t; - -#endif diff --git a/amd64/include/ape/stdint.h b/amd64/include/ape/stdint.h new file mode 100644 index 000000000..b9f62ad18 --- /dev/null +++ b/amd64/include/ape/stdint.h @@ -0,0 +1,31 @@ +#ifndef _STDINT_H_ +#define _STDINT_H_ 1 + +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 long long intptr_t; +typedef unsigned long long uintptr_t; + +#define INT8_MIN 0x80 +#define INT16_MIN 0x8000 +#define INT32_MIN 0x80000000 +#define INT64_MIN 0x8000000000000000LL + +#define INT8_MAX 0x7f +#define INT16_MAX 0x7fff +#define INT32_MAX 0x7fffffff +#define INT64_MAX 0x7fffffffffffffffULL + +#define UINT8_MAX 0xff +#define UINT16_MAX 0xffff +#define UINT32_MAX 0xffffffffL +#define UINT64_MAX 0xffffffffffffffffULL + +#endif |