Remove definition of is_octal and is_decimal, they arent used

This commit is contained in:
Glenn L McGrath 2002-08-22 12:55:26 +00:00
parent 75762705a3
commit f853db54f9

View File

@ -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))