diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-08-22 12:55:26 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-08-22 12:55:26 +0000 |
commit | f853db54f9ec47347b6a0122048a983398685d08 (patch) | |
tree | ed429b67e30ccab1f576f26c8e08c5cc368a84d4 | |
parent | 75762705a3a8db5e82e36401babac36fa976aca2 (diff) | |
download | busybox-w32-f853db54f9ec47347b6a0122048a983398685d08.tar.gz busybox-w32-f853db54f9ec47347b6a0122048a983398685d08.tar.bz2 busybox-w32-f853db54f9ec47347b6a0122048a983398685d08.zip |
Remove definition of is_octal and is_decimal, they arent used
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index 55a0ff809..0bc356415 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -70,9 +70,6 @@ char *strtok_r(char *s, const char *delim, char **ptrptr); | |||
70 | #define BUF_SIZE 8192 | 70 | #define BUF_SIZE 8192 |
71 | #define EXPAND_ALLOC 1024 | 71 | #define EXPAND_ALLOC 1024 |
72 | 72 | ||
73 | static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); } | ||
74 | static inline int is_octal(int ch) { return ((ch >= '0') && (ch <= '7')); } | ||
75 | |||
76 | /* Macros for min/max. */ | 73 | /* Macros for min/max. */ |
77 | #ifndef MIN | 74 | #ifndef MIN |
78 | #define MIN(a,b) (((a)<(b))?(a):(b)) | 75 | #define MIN(a,b) (((a)<(b))?(a):(b)) |