diff options
author | 2009-11-08 16:55:17 +0000 | |
---|---|---|
committer | 2009-11-08 16:55:17 +0000 | |
commit | a796d682a32523f7dfde788be4a92e209850595c (patch) | |
tree | 51073fe95fc444b9f4d4a5574a00605946b1a972 /lib/libc/stdio/fgetws.c | |
parent | Make sure xscale_cache_flushD_rng will not try to flush more than the (diff) | |
download | wireguard-openbsd-a796d682a32523f7dfde788be4a92e209850595c.tar.xz wireguard-openbsd-a796d682a32523f7dfde788be4a92e209850595c.zip |
ansify
ok deraadt
Diffstat (limited to 'lib/libc/stdio/fgetws.c')
-rw-r--r-- | lib/libc/stdio/fgetws.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libc/stdio/fgetws.c b/lib/libc/stdio/fgetws.c index e58ad07797b..4563e011b6d 100644 --- a/lib/libc/stdio/fgetws.c +++ b/lib/libc/stdio/fgetws.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fgetws.c,v 1.4 2009/10/22 01:23:16 guenther Exp $ */ +/* $OpenBSD: fgetws.c,v 1.5 2009/11/08 16:55:17 stsp Exp $ */ /* $NetBSD: fgetws.c,v 1.1 2003/03/07 07:11:37 tshiozak Exp $ */ /*- @@ -37,10 +37,7 @@ #include "local.h" wchar_t * -fgetws(ws, n, fp) - wchar_t * __restrict ws; - int n; - FILE * __restrict fp; +fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp) { wchar_t *wsp; wint_t wc; |