_close.c 159 B

123456789
  1. #include <lib.h>
  2. #define close _close
  3. #include <unistd.h>
  4. PUBLIC int close(fd)
  5. int fd;
  6. {
  7. return(_callm1(FS, CLOSE, fd, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
  8. }