mirror of
https://github.com/ziglang/zig.git
synced 2026-01-19 05:45:12 +00:00
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
153 B
C
8 lines
153 B
C
#include <stdio.h>
|
|
#include <limits.h>
|
|
|
|
int vsprintf(char *restrict s, const char *restrict fmt, va_list ap)
|
|
{
|
|
return vsnprintf(s, INT_MAX, fmt, ap);
|
|
}
|