summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorstsp <stsp@openbsd.org>2009-11-08 16:55:17 +0000
committerstsp <stsp@openbsd.org>2009-11-08 16:55:17 +0000
commita796d682a32523f7dfde788be4a92e209850595c (patch)
tree51073fe95fc444b9f4d4a5574a00605946b1a972 /lib/libc
parentMake sure xscale_cache_flushD_rng will not try to flush more than the (diff)
downloadwireguard-openbsd-a796d682a32523f7dfde788be4a92e209850595c.tar.xz
wireguard-openbsd-a796d682a32523f7dfde788be4a92e209850595c.zip
ansify
ok deraadt
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdio/fgetws.c7
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;