diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-18 20:17:05 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-18 20:17:05 +0000 |
commit | 2416b9df6640a2faea54b2eaf1448a222210317c (patch) | |
tree | 26096d9475373a25e3f2f1f41c2ef8f7ac10c6b3 /libbb | |
parent | 4803aae4fe49e2da626ced25631108d67a16ba62 (diff) | |
download | busybox-w32-2416b9df6640a2faea54b2eaf1448a222210317c.tar.gz busybox-w32-2416b9df6640a2faea54b2eaf1448a222210317c.tar.bz2 busybox-w32-2416b9df6640a2faea54b2eaf1448a222210317c.zip |
Add types for the inline funcs, thanks to Ralph Siemsen <ralphs@netwinder.org>
git-svn-id: svn://busybox.net/trunk/busybox@2371 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/libbb.h b/libbb/libbb.h index 4b06ad12c..19de73ca9 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h | |||
@@ -54,8 +54,8 @@ extern int daemon (int nochdir, int noclose); | |||
54 | #define BUF_SIZE 8192 | 54 | #define BUF_SIZE 8192 |
55 | #define EXPAND_ALLOC 1024 | 55 | #define EXPAND_ALLOC 1024 |
56 | 56 | ||
57 | static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); } | 57 | static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); } |
58 | static inline int is_octal(ch) { return ((ch >= '0') && (ch <= '7')); } | 58 | static inline int is_octal(int ch) { return ((ch >= '0') && (ch <= '7')); } |
59 | 59 | ||
60 | /* Macros for min/max. */ | 60 | /* Macros for min/max. */ |
61 | #ifndef MIN | 61 | #ifndef MIN |