diff options
author | 2015-02-09 10:45:56 +0000 | |
---|---|---|
committer | 2015-02-09 10:45:56 +0000 | |
commit | 535be0a3935a50db07adb6d826f8c2009ec39e04 (patch) | |
tree | a49c209abc26cdbb8914a45c55416b2dc042e65c /lib/libc/time | |
parent | zap trailing whitespace; (diff) | |
download | wireguard-openbsd-535be0a3935a50db07adb6d826f8c2009ec39e04.tar.xz wireguard-openbsd-535be0a3935a50db07adb6d826f8c2009ec39e04.zip |
if isascii isn't defined, don't define a retarded version
Diffstat (limited to 'lib/libc/time')
-rw-r--r-- | lib/libc/time/zdump.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/time/zdump.c b/lib/libc/time/zdump.c index f141e3b9eda..29036452d7f 100644 --- a/lib/libc/time/zdump.c +++ b/lib/libc/time/zdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zdump.c,v 1.23 2015/02/09 08:25:11 tedu Exp $ */ +/* $OpenBSD: zdump.c,v 1.24 2015/02/09 10:45:56 tedu Exp $ */ /* ** This file is in the public domain, so clarified as of ** 2009-05-17 by Arthur David Olson. @@ -18,9 +18,6 @@ #include "stdlib.h" /* for exit, malloc, atoi */ #include "float.h" /* for FLT_MAX and DBL_MAX */ #include "ctype.h" /* for isalpha et al. */ -#ifndef isascii -#define isascii(x) 1 -#endif /* !defined isascii */ #ifndef ZDUMP_LO_YEAR #define ZDUMP_LO_YEAR (-500) |