aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 587a5f952..7c1db3f40 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -220,11 +220,11 @@ typedef unsigned long uoff_t;
220 220
221/* Macros for min/max. */ 221/* Macros for min/max. */
222#ifndef MIN 222#ifndef MIN
223#define MIN(a,b) (((a)<(b))?(a):(b)) 223#define MIN(a,b) (((a)<(b))?(a):(b))
224#endif 224#endif
225 225
226#ifndef MAX 226#ifndef MAX
227#define MAX(a,b) (((a)>(b))?(a):(b)) 227#define MAX(a,b) (((a)>(b))?(a):(b))
228#endif 228#endif
229 229
230/* buffer allocation schemes */ 230/* buffer allocation schemes */