From dfee67b10b2b2520cc264cdf5a5217d14fbe9a5c Mon Sep 17 00:00:00 2001 From: bug1 Date: Thu, 22 Aug 2002 12:55:26 +0000 Subject: Remove definition of is_octal and is_decimal, they arent used git-svn-id: svn://busybox.net/trunk/busybox@5330 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- include/libbb.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'include') 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-55-g6feb