aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-22 12:55:26 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-22 12:55:26 +0000
commitdfee67b10b2b2520cc264cdf5a5217d14fbe9a5c (patch)
treeed429b67e30ccab1f576f26c8e08c5cc368a84d4 /include/libbb.h
parent38a0dc23384e82c4f3203c805950fc7abf5a251b (diff)
downloadbusybox-w32-dfee67b10b2b2520cc264cdf5a5217d14fbe9a5c.tar.gz
busybox-w32-dfee67b10b2b2520cc264cdf5a5217d14fbe9a5c.tar.bz2
busybox-w32-dfee67b10b2b2520cc264cdf5a5217d14fbe9a5c.zip
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
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h3
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
73static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
74static 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))