vwprintf.c (c5604d0a50cc18e7c5546e9c77a8fdcb69cb5e3c) vwprintf.c (3c87aa1d3dc1d8dad3efad322852a8e1e76dee55)
1/*-
2 * Copyright (c) 2002 Tim J. Robbins
3 * All rights reserved.
4 *
1/*-
2 * Copyright (c) 2002 Tim J. Robbins
3 * All rights reserved.
4 *
5 * Copyright (c) 2011 The FreeBSD Foundation
6 * All rights reserved.
7 * Portions of this software were developed by David Chisnall
8 * under sponsorship from the FreeBSD Foundation.
9 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.

--- 12 unchanged lines hidden (view full) ---

25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD$");
29
30#include <stdarg.h>
31#include <stdio.h>
32#include <wchar.h>
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.

--- 12 unchanged lines hidden (view full) ---

30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD$");
34
35#include <stdarg.h>
36#include <stdio.h>
37#include <wchar.h>
38#include <xlocale.h>
33
34int
35vwprintf(const wchar_t * __restrict fmt, va_list ap)
36{
39
40int
41vwprintf(const wchar_t * __restrict fmt, va_list ap)
42{
37
38 return (vfwprintf(stdout, fmt, ap));
39}
43 return (vfwprintf(stdout, fmt, ap));
44}
45int
46vwprintf_l(locale_t locale, const wchar_t * __restrict fmt, va_list ap)
47{
48 return (vfwprintf_l(stdout, locale, fmt, ap));
49}