1c5604d0aSTim J. Robbins /*- 2d915a14eSPedro F. Giffuni * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3d915a14eSPedro F. Giffuni * 4c5604d0aSTim J. Robbins * Copyright (c) 2002 Tim J. Robbins 5c5604d0aSTim J. Robbins * All rights reserved. 6c5604d0aSTim J. Robbins * 73c87aa1dSDavid Chisnall * Copyright (c) 2011 The FreeBSD Foundation 8*5b5fa75aSEd Maste * 93c87aa1dSDavid Chisnall * Portions of this software were developed by David Chisnall 103c87aa1dSDavid Chisnall * under sponsorship from the FreeBSD Foundation. 113c87aa1dSDavid Chisnall * 12c5604d0aSTim J. Robbins * Redistribution and use in source and binary forms, with or without 13c5604d0aSTim J. Robbins * modification, are permitted provided that the following conditions 14c5604d0aSTim J. Robbins * are met: 15c5604d0aSTim J. Robbins * 1. Redistributions of source code must retain the above copyright 16c5604d0aSTim J. Robbins * notice, this list of conditions and the following disclaimer. 17c5604d0aSTim J. Robbins * 2. Redistributions in binary form must reproduce the above copyright 18c5604d0aSTim J. Robbins * notice, this list of conditions and the following disclaimer in the 19c5604d0aSTim J. Robbins * documentation and/or other materials provided with the distribution. 20c5604d0aSTim J. Robbins * 21c5604d0aSTim J. Robbins * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 22c5604d0aSTim J. Robbins * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23c5604d0aSTim J. Robbins * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24c5604d0aSTim J. Robbins * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 25c5604d0aSTim J. Robbins * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26c5604d0aSTim J. Robbins * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27c5604d0aSTim J. Robbins * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28c5604d0aSTim J. Robbins * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29c5604d0aSTim J. Robbins * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30c5604d0aSTim J. Robbins * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31c5604d0aSTim J. Robbins * SUCH DAMAGE. 32c5604d0aSTim J. Robbins */ 33c5604d0aSTim J. Robbins 34c5604d0aSTim J. Robbins #include <sys/cdefs.h> 35c5604d0aSTim J. Robbins __FBSDID("$FreeBSD$"); 36c5604d0aSTim J. Robbins 37c5604d0aSTim J. Robbins #include <stdarg.h> 38c5604d0aSTim J. Robbins #include <stdio.h> 39c5604d0aSTim J. Robbins #include <wchar.h> 403c87aa1dSDavid Chisnall #include <xlocale.h> 41c5604d0aSTim J. Robbins 42c5604d0aSTim J. Robbins int 43c5604d0aSTim J. Robbins vwprintf(const wchar_t * __restrict fmt, va_list ap) 44c5604d0aSTim J. Robbins { 45c5604d0aSTim J. Robbins return (vfwprintf(stdout, fmt, ap)); 46c5604d0aSTim J. Robbins } 473c87aa1dSDavid Chisnall int 483c87aa1dSDavid Chisnall vwprintf_l(locale_t locale, const wchar_t * __restrict fmt, va_list ap) 493c87aa1dSDavid Chisnall { 503c87aa1dSDavid Chisnall return (vfwprintf_l(stdout, locale, fmt, ap)); 513c87aa1dSDavid Chisnall } 52