From dde2405da5aa703123c03e79236d99620a403a4a Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Sat, 29 May 1993 20:43:18 -0400 Subject: [PATCH] delinted SCCS-file: strftime.c SCCS-SID: 7.11 --- strftime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strftime.c b/strftime.c index 3c1be23..333efe3 100644 --- a/strftime.c +++ b/strftime.c @@ -54,6 +54,8 @@ static char *_fmt P((const char *, const struct tm *, char *, const char *)); size_t strftime P((char *, size_t, const char *, const struct tm *)); +extern char *tzname[2]; + size_t strftime(s, maxsize, format, t) char *s; @@ -307,8 +309,6 @@ label: else #endif /* defined TM_ZONE */ if (t->tm_isdst == 0 || t->tm_isdst == 1) { - extern char * tzname[2]; - pt = _add(tzname[t->tm_isdst], pt, ptlim); } else pt = _add("?", pt, ptlim);