From: Glenn L McGrath Date: Thu, 22 Aug 2002 12:55:26 +0000 (-0000) Subject: Remove definition of is_octal and is_decimal, they arent used X-Git-Tag: 0_60_4~72 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f853db54f9ec47347b6a0122048a983398685d08;p=oweals%2Fbusybox.git Remove definition of is_octal and is_decimal, they arent used --- 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); #define BUF_SIZE 8192 #define EXPAND_ALLOC 1024 -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 #define MIN(a,b) (((a)<(b))?(a):(b))