musl-tcc/src/unistd/posix_close.c

7 lines
79 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <unistd.h>
int posix_close(int fd, int flags)
{
return close(fd);
}