1 | #ifndef _SIM_CPP_CONFIG_H |
---|---|
2 | #define _SIM_CPP_CONFIG_H |
3 | |
4 | #pragma clang system_header |
5 | |
6 | typedef unsigned char uint8_t; |
7 | |
8 | typedef __typeof__(sizeof(int)) size_t; |
9 | typedef __typeof__((char*)0-(char*)0) ptrdiff_t; |
10 | |
11 | #endif // _SIM_CPP_CONFIG_H |
12 |