mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:17:35 +00:00
Some compat work towards making GCC's libstdc++ build.
This commit is contained in:
parent
93c0dfd1d7
commit
0b957ed2b1
9 changed files with 120 additions and 11 deletions
|
@ -4,15 +4,25 @@
|
|||
|
||||
__BEGIN_DECLS
|
||||
|
||||
typedef unsigned long long int uint64_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned char uint8_t;
|
||||
typedef __UINT64_TYPE__ uint64_t;
|
||||
typedef __UINT32_TYPE__ uint32_t;
|
||||
typedef __UINT16_TYPE__ uint16_t;
|
||||
typedef __UINT8_TYPE__ uint8_t;
|
||||
|
||||
typedef signed long long int int64_t;
|
||||
typedef signed int int32_t;
|
||||
typedef signed short int16_t;
|
||||
typedef signed char int8_t;
|
||||
typedef __INT64_TYPE__ int64_t;
|
||||
typedef __INT32_TYPE__ int32_t;
|
||||
typedef __INT16_TYPE__ int16_t;
|
||||
typedef __INT8_TYPE__ int8_t;
|
||||
|
||||
typedef __UINT_FAST8_TYPE__ uint_fast8_t;
|
||||
typedef __UINT_FAST16_TYPE__ uint_fast16_t;
|
||||
typedef __UINT_FAST32_TYPE__ uint_fast32_t;
|
||||
typedef __UINT_FAST64_TYPE__ uint_fast64_t;
|
||||
|
||||
typedef __INT_FAST8_TYPE__ int_fast8_t;
|
||||
typedef __INT_FAST16_TYPE__ int_fast16_t;
|
||||
typedef __INT_FAST32_TYPE__ int_fast32_t;
|
||||
typedef __INT_FAST64_TYPE__ int_fast64_t;
|
||||
|
||||
#define __int8_t_defined 1
|
||||
#define __uint8_t_defined 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue