diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/dump.h | 2 | ||||
-rw-r--r-- | include/libbb.h | 4 | ||||
-rw-r--r-- | include/platform.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/dump.h b/include/dump.h index 925270d9c..4c237ef05 100644 --- a/include/dump.h +++ b/include/dump.h | |||
@@ -45,7 +45,7 @@ typedef struct FS { /* format strings */ | |||
45 | typedef struct dumper_t { | 45 | typedef struct dumper_t { |
46 | off_t dump_skip; /* bytes to skip */ | 46 | off_t dump_skip; /* bytes to skip */ |
47 | int dump_length; /* max bytes to read */ | 47 | int dump_length; /* max bytes to read */ |
48 | smallint dump_vflag; /*enum dump_vflag_t*/ | 48 | smallint dump_vflag; /*enum dump_vflag_t*/ |
49 | FS *fshead; | 49 | FS *fshead; |
50 | } dumper_t; | 50 | } dumper_t; |
51 | 51 | ||
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 */ |
diff --git a/include/platform.h b/include/platform.h index 656327641..855cb289c 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
6 | */ | 6 | */ |
7 | #ifndef BB_PLATFORM_H | 7 | #ifndef BB_PLATFORM_H |
8 | #define BB_PLATFORM_H 1 | 8 | #define BB_PLATFORM_H 1 |
9 | 9 | ||
10 | /* Assume all these functions exist by default. Platforms where it is not | 10 | /* Assume all these functions exist by default. Platforms where it is not |