add support for BOM-determined-endian UCS2, UTF-16, and UTF-32 to iconv
[musl] / src / unistd / posix_close.c
1 #include <unistd.h>
2
3 int posix_close(int fd, int flags)
4 {
5         return close(fd);
6 }