diff -EbuNr --strip-trailing-cr sys/param.h.org sys/param.h
|
old
|
new
|
|
| 201 | 201 | unsigned long _swapl (unsigned long _x); |
| 202 | 202 | #endif |
| 203 | 203 | |
| 204 | | #if defined (__cplusplus) && (__GNUC__ >= 2) |
| 205 | | # define MIN(a,b) (((a)<?(b)) |
| 206 | | #else |
| 207 | | # define MIN(a,b) (((a)<(b))?(a):(b)) |
| 208 | | #endif |
| 209 | | #if defined (__cplusplus) && (__GNUC__ >= 2) |
| 210 | | # define MAX(a,b) (((a)>?(b)) |
| 211 | | #else |
| 212 | | # define MAX(a,b) (((a)>(b))?(a):(b)) |
| 213 | | #endif |
| | 204 | #define MIN(a,b) (((a)<(b))?(a):(b)) |
| | 205 | #define MAX(a,b) (((a)>(b))?(a):(b)) |
| 214 | 206 | |
| 215 | 207 | #if defined (__cplusplus) |
| 216 | 208 | } |