summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/vscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio/vscanf.c')
-rw-r--r--lib/libc/stdio/vscanf.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/libc/stdio/vscanf.c b/lib/libc/stdio/vscanf.c
index d56bb3b51639..8729c9ca6ba8 100644
--- a/lib/libc/stdio/vscanf.c
+++ b/lib/libc/stdio/vscanf.c
@@ -18,7 +18,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$");
#include "xlocale_private.h"
int
-vscanf_l(locale, fmt, ap)
- locale_t locale;
- const char * __restrict fmt;
- __va_list ap;
+vscanf_l(locale_t locale, const char * __restrict fmt, __va_list ap)
{
int retval;
FIX_LOCALE(locale);
@@ -63,9 +60,7 @@ vscanf_l(locale, fmt, ap)
return (retval);
}
int
-vscanf(fmt, ap)
- const char * __restrict fmt;
- __va_list ap;
+vscanf(const char * __restrict fmt, __va_list ap)
{
return vscanf_l(__get_locale(), fmt, ap);
}