svn commit: r288032 - head/lib/libc/stdio

Craig Rodrigues rodrigc at FreeBSD.org
Sun Sep 20 20:27:58 UTC 2015


Author: rodrigc
Date: Sun Sep 20 20:27:57 2015
New Revision: 288032
URL: https://svnweb.freebsd.org/changeset/base/288032

Log:
  Remove names from some prototypes

Modified:
  head/lib/libc/stdio/fgetwln.c

Modified: head/lib/libc/stdio/fgetwln.c
==============================================================================
--- head/lib/libc/stdio/fgetwln.c	Sun Sep 20 20:26:46 2015	(r288031)
+++ head/lib/libc/stdio/fgetwln.c	Sun Sep 20 20:27:57 2015	(r288032)
@@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$");
 #include "local.h"
 #include "xlocale_private.h"
 
-wchar_t *fgetwln_l(FILE * __restrict fp, size_t *lenp, locale_t locale);
+wchar_t *fgetwln_l(FILE * __restrict, size_t *, locale_t);
 
 wchar_t *
 fgetwln_l(FILE * __restrict fp, size_t *lenp, locale_t locale)


More information about the svn-src-all mailing list