summaryrefslogtreecommitdiff
path: root/src/date.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1992-12-07 05:26:54 +0000
committerJim Meyering <jim@meyering.net>1992-12-07 05:26:54 +0000
commit7c4931fcee154bf117d4fe6cde9cb0f4468fcae4 (patch)
treeef7a8655f9f263ca17c2714dd4c6420e1846ceba /src/date.c
parent5b783b69728678127dcc1084d8562e55368e0429 (diff)
downloadcoreutils-7c4931fcee154bf117d4fe6cde9cb0f4468fcae4.tar.xz
Remove unused definition of isdigit.
Diffstat (limited to 'src/date.c')
-rw-r--r--src/date.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/date.c b/src/date.c
index 8ca574e91..59d76c7da 100644
--- a/src/date.c
+++ b/src/date.c
@@ -44,9 +44,6 @@
#include <sys/types.h>
#include "system.h"
-/* This is portable and avoids bringing in all of the ctype stuff. */
-#define isdigit(c) ((c) >= '0' && (c) <= '9')
-
#ifdef TM_IN_SYS_TIME
#include <sys/time.h>
#else