summaryrefslogtreecommitdiff
path: root/src/wchar/fwprintf_s.c
blob: a88ef2c8464defd7e68abe7c9fc1c90b1ef8dafe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <wchar.h>

int fwprintf_s(FILE * restrict stream, const wchar_t * restrict format, ...)
{
	__C_EXT(1, 201112L);
	va_list ap;
	va_start(ap, format);
	int ret = vfwprintf_s(stream, format, ap);
	va_end(ap);
	return ret;
}

/*
CEXT1(201112)
*/