diff options
author | Roland McGrath <roland@gnu.org> | 1996-02-19 23:34:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-02-19 23:34:46 +0000 |
commit | f2e235b9b807706f12636b1d194a61c14e400e65 (patch) | |
tree | 8f8efd0b565cf99d77144dce7f9eb649fffe1dd8 /time/scheck.c | |
parent | 0ddc0d16048d02a98a8a26a1c3e1ab05197d4174 (diff) | |
download | glibc-f2e235b9b807706f12636b1d194a61c14e400e65.tar.gz glibc-f2e235b9b807706f12636b1d194a61c14e400e65.tar.xz glibc-f2e235b9b807706f12636b1d194a61c14e400e65.zip |
Mon Feb 19 18:31:59 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> cvs/libc-960222 cvs/libc-960221 cvs/libc-960220
* time/zic.c, time/scheck.c, time/private.h, time/tzfile.h: Updated from ADO 96d.
Diffstat (limited to 'time/scheck.c')
-rw-r--r-- | time/scheck.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/time/scheck.c b/time/scheck.c index 404c6b2111..64f25076ed 100644 --- a/time/scheck.c +++ b/time/scheck.c @@ -1,6 +1,6 @@ #ifndef lint #ifndef NOID -static char elsieid[] = "@(#)scheck.c 8.12"; +static char elsieid[] = "@(#)scheck.c 8.13"; #endif /* !defined lint */ #endif /* !defined NOID */ @@ -42,7 +42,7 @@ char * const format; *tp++ = '*'; if (*fp == '*') ++fp; - while (isascii(*fp) && isdigit(*fp)) + while (is_digit(*fp)) *tp++ = *fp++; if (*fp == 'l' || *fp == 'h') *tp++ = *fp++; |