diff options
author | Denis Vlasenko | 2006-11-27 14:44:18 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-27 14:44:18 +0000 |
commit | 459903bd4e270ab4884ba9577516f9b2753898b0 (patch) | |
tree | 8dd4e8a4db28561fad1dcaeabee936a3aad7187c /coreutils/od.c | |
parent | d686a045c8134d3a42fa5cc6b2e09118e08d603f (diff) | |
download | busybox-459903bd4e270ab4884ba9577516f9b2753898b0.zip busybox-459903bd4e270ab4884ba9577516f9b2753898b0.tar.gz |
Provide our own isdigit macro. saves more than 400 bytes.
Diffstat (limited to 'coreutils/od.c')
-rw-r--r-- | coreutils/od.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/od.c b/coreutils/od.c index 9a2d4c3..8de8662 100644 --- a/coreutils/od.c +++ b/coreutils/od.c @@ -21,7 +21,7 @@ #include "busybox.h" #include "dump.h" -#define isdecdigit(c) (isdigit)(c) +#define isdecdigit(c) isdigit(c) #define ishexdigit(c) (isxdigit)(c) static void |