aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h12
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 {
191extern int sysinfo(struct sysinfo* info); 191extern 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... */
197typedef signed char smallint;
198typedef unsigned char smalluint;
199#else
200/* for arches where byte accesses generate larger code: */
201typedef int smallint;
202typedef unsigned smalluint;
203#endif
204
205
194extern void chomp(char *s); 206extern void chomp(char *s);
195extern void trim(char *s); 207extern void trim(char *s);
196extern char *skip_whitespace(const char *); 208extern char *skip_whitespace(const char *);