ref: 03eeebb97f014c29a4dd25d873fc6ad50da48f15
dir: /sys/src/libthread/ioclose.c/
#include <u.h> #include <libc.h> #include <thread.h> #include "threadimpl.h" static long _ioclose(va_list *arg) { int fd; fd = va_arg(*arg, int); return close(fd); } int ioclose(Ioproc *io, int fd) { return iocall(io, _ioclose, fd); }