git @ Cat's Eye Technologies linapple / 0b1e64e
Only define MIN/MAX if needed MIN and MAX macros are defined on Linux at least by sys/param.h. Don't define them twice to avoid a warning. T. Joseph Carter 5 years ago
1 changed file(s) with 2 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
1616
1717 #define NUM_SLOTS 8
1818
19 #ifndef MIN
1920 #define MAX(a,b) (((a) > (b)) ? (a) : (b))
2021 #define MIN(a,b) (((a) < (b)) ? (a) : (b))
22 #endif
2123
2224 #define RAMWORKS // 8MB RamWorks III support
2325