diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2009-11-08 16:55:18 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2009-11-08 16:55:18 +0000 |
commit | edd7b212bbd6639ef681e0b2a4a145d5f6e200cb (patch) | |
tree | 47c505a03ea9eb7db3e20c8c43fd507067336cda /lib/libc/stdio | |
parent | 31ff64b76275593d08bf6592919dd1692814880f (diff) |
ansify
ok deraadt
Diffstat (limited to 'lib/libc/stdio')
-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; |