0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/newtree synced 2025-03-09 01:41:03 +00:00

Fixed min and max redefinition complaint on win32.

This commit is contained in:
Forest Hale 2000-06-26 12:31:47 +00:00
parent cbd8135196
commit f17ed670d5

View file

@ -39,6 +39,8 @@
# include <sys/types.h>
#endif
#include "stdlib.h"
#ifndef max
# define max(a,b) ((a) > (b) ? (a) : (b))
#endif