aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-10-28 18:57:19 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-10-28 18:57:19 +0200
commite4dcba1c103dc28e927e004791e331aaf604383d (patch)
treea18094ecc54fcea2cb523a802e0c414c3e6f85bf /include/libbb.h
parent776509544123c68bbc128c0fdb2f699062d294cf (diff)
downloadbusybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.tar.gz
busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.tar.bz2
busybox-w32-e4dcba1c103dc28e927e004791e331aaf604383d.zip
*: whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 */