1103856Stjr/*-
2103856Stjr * Copyright (c) 2002 Tim J. Robbins
3103856Stjr * All rights reserved.
4103856Stjr *
5235785Stheraven * Copyright (c) 2011 The FreeBSD Foundation
6235785Stheraven * All rights reserved.
7235785Stheraven * Portions of this software were developed by David Chisnall
8235785Stheraven * under sponsorship from the FreeBSD Foundation.
9235785Stheraven *
10103856Stjr * Redistribution and use in source and binary forms, with or without
11103856Stjr * modification, are permitted provided that the following conditions
12103856Stjr * are met:
13103856Stjr * 1. Redistributions of source code must retain the above copyright
14103856Stjr *    notice, this list of conditions and the following disclaimer.
15103856Stjr * 2. Redistributions in binary form must reproduce the above copyright
16103856Stjr *    notice, this list of conditions and the following disclaimer in the
17103856Stjr *    documentation and/or other materials provided with the distribution.
18103856Stjr *
19103856Stjr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20103856Stjr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21103856Stjr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22103856Stjr * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23103856Stjr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24103856Stjr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25103856Stjr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26103856Stjr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27103856Stjr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28103856Stjr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29103856Stjr * SUCH DAMAGE.
30103856Stjr */
31103856Stjr
32103856Stjr#include <sys/cdefs.h>
33103856Stjr__FBSDID("$FreeBSD$");
34103856Stjr
35103856Stjr#include <stdarg.h>
36103856Stjr#include <stdio.h>
37103856Stjr#include <wchar.h>
38235785Stheraven#include <xlocale.h>
39103856Stjr
40103856Stjrint
41103856Stjrvwscanf(const wchar_t * __restrict fmt, va_list ap)
42103856Stjr{
43103856Stjr	return (vfwscanf(stdin, fmt, ap));
44103856Stjr}
45235785Stheravenint
46235785Stheravenvwscanf_l(locale_t locale, const wchar_t * __restrict fmt, va_list ap)
47235785Stheraven{
48235785Stheraven	return (vfwscanf_l(stdin, locale, fmt, ap));
49235785Stheraven}
50