#if 0 #include #include #include "_forced/vswscanf.h" int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...) { SIGNAL_SAFE(0); /* TODO: overlap */ va_list ap; va_start(ap, format); int ret = vswscanf(s, format, ap); va_end(ap); return ret; } /* STDC(199409) */ #endif