From f853db54f9ec47347b6a0122048a983398685d08 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Thu, 22 Aug 2002 12:55:26 +0000 Subject: Remove definition of is_octal and is_decimal, they arent used --- include/libbb.h | 3 --- 1 file changed, 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); #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)) -- cgit v1.2.3