diff options
Diffstat (limited to 'include/libbb.h')
| -rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 2936a8816..715f1e102 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
| @@ -231,11 +231,11 @@ typedef unsigned long uoff_t; | |||
| 231 | 231 | ||
| 232 | /* Macros for min/max. */ | 232 | /* Macros for min/max. */ |
| 233 | #ifndef MIN | 233 | #ifndef MIN |
| 234 | #define MIN(a,b) (((a)<(b))?(a):(b)) | 234 | #define MIN(a,b) (((a)<(b))?(a):(b)) |
| 235 | #endif | 235 | #endif |
| 236 | 236 | ||
| 237 | #ifndef MAX | 237 | #ifndef MAX |
| 238 | #define MAX(a,b) (((a)>(b))?(a):(b)) | 238 | #define MAX(a,b) (((a)>(b))?(a):(b)) |
| 239 | #endif | 239 | #endif |
| 240 | 240 | ||
| 241 | /* buffer allocation schemes */ | 241 | /* buffer allocation schemes */ |
