summaryrefslogtreecommitdiffstats
path: root/pw/psdate.c
diff options
context:
space:
mode:
Diffstat (limited to 'pw/psdate.c')
-rw-r--r--pw/psdate.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/pw/psdate.c b/pw/psdate.c
index 537861b..8e3a951 100644
--- a/pw/psdate.c
+++ b/pw/psdate.c
@@ -40,21 +40,6 @@ static const char rcsid[] =
static int
-a2i(char const ** str)
-{
- int i = 0;
- char const *s = *str;
-
- if (isdigit((unsigned char)*s)) {
- i = atoi(s);
- while (isdigit((unsigned char)*s))
- ++s;
- *str = s;
- }
- return i;
-}
-
-static int
numerics(char const * str)
{
int rc = isdigit((unsigned char)*str);