From b5ec61e4f5365368a005faf6d6e5bd180dcc8dab Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 18 Apr 2001 20:17:05 +0000 Subject: Add types for the inline funcs, thanks to Ralph Siemsen --- include/libbb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/libbb.h') diff --git a/include/libbb.h b/include/libbb.h index 4b06ad12c..19de73ca9 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -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 -- cgit v1.2.3