#ifndef STDINT_H #define STDINT_H #if defined( __PCC__ ) || defined( __TINYC__ ) // TODO: no stdint.h in pcc-libs/pcc or tcc, mock one, but this one is // most likely very incorrect typedef unsigned int uint32_t; typedef signed int int32_t; typedef unsigned short uint16_t; typedef signed short int16_t; typedef unsigned char uint8_t; typedef signed char int8_t; typedef uint32_t uintptr_t; #else // gcc and clang provide a stdint.h #include_next #endif #endif // STDINT_H