aboutsummaryrefslogtreecommitdiffstats
path: root/io/wrap/vswprintf.c
blob: 804663412520a4d48e6b62166a1c935b83b0fceb (plain) (blame)
1
2
3
4
5
6
7
8
9
#define NO_OPAQUE_TYPE
#include "io.h"
#include <wchar.h>

int _vswprintf_wrap(wchar_t *string, size_t max_size,
		    wchar_t const *restrict format, va_list arg)
{
	return vswprintf(string, max_size, format, arg);
}