musl-tcc/src/unistd/posix_close.c
2022-03-20 16:48:53 +08:00

7 lines
79 B
C

#include <unistd.h>
int posix_close(int fd, int flags)
{
return close(fd);
}