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
1 changed files with 2 additions and 0 deletions

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