close.c 117 B

12345678
  1. #include "lib.h"
  2. PUBLIC int close(fd)
  3. int fd;
  4. {
  5. return callm1(FS, CLOSE, fd, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
  6. }