blob: 46cd0b237d846302f7f864cffc5d0bb13e76aa0a (
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
25
26
27
28
|
#if 0
#include <wchar.h>
#include <stdio.h>
#include <stdarg.h>
#if __STDC_VERSION__ < 199901L
#define vfwscanf __vfwscanf
#include "vfwscanf.c"
#endif
int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...)
{
SIGNAL_SAFE(0);
va_list ap;
va_start(ap, format);
int ret = vfwscanf(stream, format, ap);
va_end(ap);
return ret;
}
/*
STDC(199409)
*/
#endif
|