zig/lib/libc/musl/src/stdio/pclose.c
Andrew Kelley 49d1a4c562 move lib dirs to lib subdir
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
2019-07-15 17:54:50 -04:00

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;
}