1 2 3 4 5 6 7 8 9 10 11 12
#include <wchar.h> #include "stdio.h" int fputws(const wchar_t * restrict s, FILE * restrict stream) { (void)s; (void)stream; return -1; } /* STDC(199409) */