summaryrefslogtreecommitdiff
path: root/src/wchar/fwprintf.c
blob: 659bd3fd4a0195353ed23a79d0d7eba6e2a9f631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#if 0

#include <wchar.h>
#include <stdio.h>
#include <stdarg.h>

int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...)
{
	SIGNAL_SAFE(0);
	/* TODO: overlap */

	va_list ap;
	va_start(ap, format);
	int ret = vfwprintf(stream, format, ap);
	va_end(ap);
	return ret;
}

/*
STDC(199409)
*/


#endif