90f51a82e32d69921e6ddce5cb5c473d59bfc935
[musl] / posix_close.c
1 #include <unistd.h>
2
3 int posix_close(int fd, int flags)
4 {
5         return close(fd);
6 }