also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
8 lines
89 B
C
Vendored
8 lines
89 B
C
Vendored
#include "stdio_impl.h"
|
|
#include <wchar.h>
|
|
|
|
wint_t getwc(FILE *f)
|
|
{
|
|
return fgetwc(f);
|
|
}
|