1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Remove min and mix defines from winlnxdefs.h

This commit is contained in:
Sergey Lipskiy 2014-10-11 19:05:52 +07:00
parent 569e318068
commit 41da318afa

View File

@ -77,13 +77,6 @@ typedef const char *LPCSTR;
//#define EXPORT
//#define CALL
#ifndef min
#define min( a, b ) ((a > b) ? b : a)
#endif
#ifndef max
#define max( a, b ) ((a > b) ? a : b)
#endif
#ifndef FALSE
#define FALSE 0
#endif