diff options
author | 2001-01-06 20:34:48 +0000 | |
---|---|---|
committer | 2001-01-06 20:34:48 +0000 | |
commit | 1c6240a69df177508ef110e778db10fc8ba625ac (patch) | |
tree | c1ae20ae086ff2b04ae108783774802a876df181 | |
parent | Add -l to default msdos mount options; closes PR 634 (diff) | |
download | wireguard-openbsd-1c6240a69df177508ef110e778db10fc8ba625ac.tar.xz wireguard-openbsd-1c6240a69df177508ef110e778db10fc8ba625ac.zip |
0xFF is not a control character in ISO 8859; ok angelos@
-rw-r--r-- | lib/libc/gen/ctype_.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/ctype_.c b/lib/libc/gen/ctype_.c index de3b8fed69b..2bea8d3f8f7 100644 --- a/lib/libc/gen/ctype_.c +++ b/lib/libc/gen/ctype_.c @@ -37,7 +37,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ctype_.c,v 1.4 2001/01/05 03:04:21 angelos Exp $"; +static char rcsid[] = "$OpenBSD: ctype_.c,v 1.5 2001/01/06 20:34:48 naddy Exp $"; #endif /* LIBC_SCCS and not lint */ #include <ctype.h> @@ -83,7 +83,7 @@ const char _C_ctype_[1 + 256] = { _P, _P, _P, _P, _P, _P, _P, _P, /* E0 */ _P, _P, _P, _P, _P, _P, _P, _P, /* E8 */ _P, _P, _P, _P, _P, _P, _P, _P, /* F0 */ - _P, _P, _P, _P, _P, _P, _P, _C /* F8 */ + _P, _P, _P, _P, _P, _P, _P, _P /* F8 */ #endif /*USE7BIT*/ }; |