1103739Stjr/*-
2103739Stjr * Copyright (c) 2002 Tim J. Robbins
3103739Stjr * All rights reserved.
4103739Stjr *
5227753Stheraven * Copyright (c) 2011 The FreeBSD Foundation
6227753Stheraven * All rights reserved.
7227753Stheraven * Portions of this software were developed by David Chisnall
8227753Stheraven * under sponsorship from the FreeBSD Foundation.
9227753Stheraven *
10103739Stjr * Redistribution and use in source and binary forms, with or without
11103739Stjr * modification, are permitted provided that the following conditions
12103739Stjr * are met:
13103739Stjr * 1. Redistributions of source code must retain the above copyright
14103739Stjr *    notice, this list of conditions and the following disclaimer.
15103739Stjr * 2. Redistributions in binary form must reproduce the above copyright
16103739Stjr *    notice, this list of conditions and the following disclaimer in the
17103739Stjr *    documentation and/or other materials provided with the distribution.
18103739Stjr *
19103739Stjr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20103739Stjr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21103739Stjr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22103739Stjr * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23103739Stjr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24103739Stjr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25103739Stjr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26103739Stjr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27103739Stjr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28103739Stjr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29103739Stjr * SUCH DAMAGE.
30103739Stjr */
31103739Stjr
32103739Stjr#include <sys/cdefs.h>
33103739Stjr__FBSDID("$FreeBSD: releng/10.3/lib/libc/stdio/vwprintf.c 227753 2011-11-20 14:45:42Z theraven $");
34103739Stjr
35103739Stjr#include <stdarg.h>
36103739Stjr#include <stdio.h>
37103739Stjr#include <wchar.h>
38227753Stheraven#include <xlocale.h>
39103739Stjr
40103739Stjrint
41103739Stjrvwprintf(const wchar_t * __restrict fmt, va_list ap)
42103739Stjr{
43103739Stjr	return (vfwprintf(stdout, fmt, ap));
44103739Stjr}
45227753Stheravenint
46227753Stheravenvwprintf_l(locale_t locale, const wchar_t * __restrict fmt, va_list ap)
47227753Stheraven{
48227753Stheraven	return (vfwprintf_l(stdout, locale, fmt, ap));
49227753Stheraven}
50