diff options
author | 1996-02-19 23:34:46 +0000 | |
---|---|---|
committer | 1996-02-19 23:34:46 +0000 | |
commit | f2e235b9b807706f12636b1d194a61c14e400e65 (patch) | |
tree | 8f8efd0b565cf99d77144dce7f9eb649fffe1dd8 /time/scheck.c | |
parent | Sun Feb 18 14:08:04 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> (diff) | |
download | glibc-cvs/libc-960222.tar.xz glibc-cvs/libc-960222.zip |
Mon Feb 19 18:31:59 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>cvs/libc-960222cvs/libc-960221cvs/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++; |