mirror of
https://github.com/ziglang/zig.git
synced 2026-02-11 12:01:18 +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
258 B
C
Vendored
14 lines
258 B
C
Vendored
#include "stdio_impl.h"
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
|
|
int pclose(FILE *f)
|
|
{
|
|
int status, r;
|
|
pid_t pid = f->pipe_pid;
|
|
fclose(f);
|
|
while ((r=__syscall(SYS_wait4, pid, &status, 0, 0)) == -EINTR);
|
|
if (r<0) return __syscall_ret(r);
|
|
return status;
|
|
}
|