From f17ed670d557b2bd69bde1fa14bf9038dada3655 Mon Sep 17 00:00:00 2001 From: Forest Hale Date: Mon, 26 Jun 2000 12:31:47 +0000 Subject: [PATCH] Fixed min and max redefinition complaint on win32. --- include/compat.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/compat.h b/include/compat.h index f1ec49b..c206ed1 100644 --- a/include/compat.h +++ b/include/compat.h @@ -39,6 +39,8 @@ # include #endif +#include "stdlib.h" + #ifndef max # define max(a,b) ((a) > (b) ? (a) : (b)) #endif