diff --git a/include/platform.h b/include/platform.h index 0982f77d5..23b3bbd0e 100644 --- a/include/platform.h +++ b/include/platform.h @@ -8,23 +8,6 @@ #if !defined(__MINGW32__) && !defined(__MINGW64__) // this is not MingW #if defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64) -// inttypes.h -typedef signed char int8_t; -typedef signed short int16_t; -typedef signed int int32_t; -typedef unsigned char uint8_t; -typedef unsigned short uint16_t; -typedef unsigned int uint32_t; -typedef signed long long int64_t; -typedef unsigned long long uint64_t; - -// stdbool.h -#ifndef __cplusplus -// typedef unsigned char bool; -#define false 0 -#define true 1 -#endif - // string.h #define strcasecmp _stricmp