diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 5d7248104..13303073d 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -191,6 +191,18 @@ struct sysinfo { | |||
191 | extern int sysinfo(struct sysinfo* info); | 191 | extern int sysinfo(struct sysinfo* info); |
192 | 192 | ||
193 | 193 | ||
194 | /* Size-saving "small" ints (arch-dependent) */ | ||
195 | #if defined(i386) || defined (__mips__) | ||
196 | /* add other arches which benefit from this... */ | ||
197 | typedef signed char smallint; | ||
198 | typedef unsigned char smalluint; | ||
199 | #else | ||
200 | /* for arches where byte accesses generate larger code: */ | ||
201 | typedef int smallint; | ||
202 | typedef unsigned smalluint; | ||
203 | #endif | ||
204 | |||
205 | |||
194 | extern void chomp(char *s); | 206 | extern void chomp(char *s); |
195 | extern void trim(char *s); | 207 | extern void trim(char *s); |
196 | extern char *skip_whitespace(const char *); | 208 | extern char *skip_whitespace(const char *); |