aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))