posix_close.c 79 B

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