ack/mach/minix/libsys/_close.c

10 lines
159 B
C
Raw Normal View History

#include <lib.h>
#define close _close
1991-09-19 12:46:16 +00:00
#include <unistd.h>
PUBLIC int close(fd)
int fd;
{
return(_callm1(FS, CLOSE, fd, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
}