aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-18 20:17:05 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-18 20:17:05 +0000
commitb5ec61e4f5365368a005faf6d6e5bd180dcc8dab (patch)
tree26096d9475373a25e3f2f1f41c2ef8f7ac10c6b3
parent53265546a69d5810d5e19b22d6a5095f04eca6be (diff)
downloadbusybox-w32-b5ec61e4f5365368a005faf6d6e5bd180dcc8dab.tar.gz
busybox-w32-b5ec61e4f5365368a005faf6d6e5bd180dcc8dab.tar.bz2
busybox-w32-b5ec61e4f5365368a005faf6d6e5bd180dcc8dab.zip
Add types for the inline funcs, thanks to Ralph Siemsen <ralphs@netwinder.org>
-rw-r--r--include/libbb.h4
-rw-r--r--libbb/libbb.h4
2 files changed, 4 insertions, 4 deletions
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);
54#define BUF_SIZE 8192 54#define BUF_SIZE 8192
55#define EXPAND_ALLOC 1024 55#define EXPAND_ALLOC 1024
56 56
57static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); } 57static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
58static inline int is_octal(ch) { return ((ch >= '0') && (ch <= '7')); } 58static 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
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
57static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); } 57static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
58static inline int is_octal(ch) { return ((ch >= '0') && (ch <= '7')); } 58static 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