Ticket #8468: util.h.patch
File util.h.patch, 383 bytes (added by , 19 years ago) |
---|
-
util.h.
old new 23 23 24 24 #include "common/scummsys.h" 25 25 26 #if defined (__INNOTEK_LIBC__) 27 #undef MIN 28 #undef MAX 29 #endif 30 26 31 template<typename T> inline T ABS (T x) { return (x>=0) ? x : -x; } 27 32 #if !defined(MIN) 28 33 template<typename T> inline T MIN (T a, T b) { return (a<b) ? a : b; }