github.com/afumu/libc@v0.0.6/musl/src/unistd/posix_close.c (about)

     1  #include <unistd.h>
     2  
     3  int posix_close(int fd, int flags)
     4  {
     5  	return close(fd);
     6  }