summaryrefslogtreecommitdiff
path: root/src/wchar/wscanf.c
blob: acd2a8299f9671c9cb55036ac872eab591386db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <wchar.h>
#include <stdarg.h>

int wscanf(const wchar_t * restrict format, ...)
{
	/*
	va_list ap;
	va_start(ap, format);
	int ret = vwscanf(format, ap);
	va_end(ap);
	return ret;
	*/
	(void)format;
	return -1;
}

/*
STDC(199409)
*/