Add types for the inline funcs, thanks to Ralph Siemsen <ralphs@netwinder.org>
authorEric Andersen <andersen@codepoet.org>
Wed, 18 Apr 2001 20:17:05 +0000 (20:17 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 18 Apr 2001 20:17:05 +0000 (20:17 -0000)
include/libbb.h
libbb/libbb.h

index 4b06ad12ccb63bc8d412980c8f25f0ebea87ef0d..19de73ca92356b85894491804814e66bd4a800e5 100644 (file)
@@ -54,8 +54,8 @@ extern int daemon (int nochdir, int noclose);
 #define BUF_SIZE        8192
 #define EXPAND_ALLOC    1024
 
-static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); }
-static inline int is_octal(ch)   { return ((ch >= '0') && (ch <= '7')); }
+static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
+static inline int is_octal(int ch)   { return ((ch >= '0') && (ch <= '7')); }
 
 /* Macros for min/max.  */
 #ifndef MIN
index 4b06ad12ccb63bc8d412980c8f25f0ebea87ef0d..19de73ca92356b85894491804814e66bd4a800e5 100644 (file)
@@ -54,8 +54,8 @@ extern int daemon (int nochdir, int noclose);
 #define BUF_SIZE        8192
 #define EXPAND_ALLOC    1024
 
-static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); }
-static inline int is_octal(ch)   { return ((ch >= '0') && (ch <= '7')); }
+static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
+static inline int is_octal(int ch)   { return ((ch >= '0') && (ch <= '7')); }
 
 /* Macros for min/max.  */
 #ifndef MIN