From 049dd317d70e89843df12e2d1d859ea850c600ae Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 11 Oct 2005 11:27:18 +0000 Subject: Patch #1323715 "OS/2 Patches to ScummVM" and credited the author. svn-id: r19016 --- common/util.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'common') diff --git a/common/util.h b/common/util.h index 7f8c810fcf..98ba7cd95a 100644 --- a/common/util.h +++ b/common/util.h @@ -23,6 +23,11 @@ #include "common/scummsys.h" +#if defined (__INNOTEK_LIBC__) +#undef MIN +#undef MAX +#endif + template inline T ABS (T x) { return (x>=0) ? x : -x; } #if !defined(MIN) template inline T MIN (T a, T b) { return (a