Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-27 17:44:18 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-27 17:44:18 +0300
commit459903bd4e270ab4884ba9577516f9b2753898b0 (patch)
tree8dd4e8a4db28561fad1dcaeabee936a3aad7187c /coreutils/od.c
parentd686a045c8134d3a42fa5cc6b2e09118e08d603f (diff)
Provide our own isdigit macro. saves more than 400 bytes.
Diffstat (limited to 'coreutils/od.c')
-rw-r--r--coreutils/od.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/od.c b/coreutils/od.c
index 9a2d4c343..8de866281 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