mirror of
https://github.com/ziglang/zig.git
synced 2025-12-15 02:33:07 +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
14 lines
208 B
C
14 lines
208 B
C
#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int asprintf(char **s, const char *fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vasprintf(s, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|