Fixed linux build error

This commit is contained in:
Artem Golubikhin 2017-07-13 09:49:01 +00:00
parent d49f59e6d2
commit 16a8fe8b15

View File

@ -59,10 +59,10 @@ typedef int BOOL;
#include <stdarg.h> #include <stdarg.h>
#include <string.h> // memset #include <string.h> // memset
#ifndef min #ifndef min
#define min(a,b) (((a) < (b)) ? (a) : (b)) //#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif #endif
#ifndef max #ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b)) //#define max(a,b) (((a) > (b)) ? (a) : (b))
#define _vsnprintf(a,b,c,d) vsnprintf(a,b,c,d) #define _vsnprintf(a,b,c,d) vsnprintf(a,b,c,d)
#endif #endif
#endif //_WIN32 #endif //_WIN32