From e079f10a8063e9bb3fe9419d817ae0f844306e66 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Thu, 15 May 2014 14:34:16 +0800 Subject: [PATCH] remove more redundant code in platform.h --- include/platform.h | 17 ----------------- 1 file changed, 17 deletions(-) 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