ack/mach/minix/libsys/close.c

9 lines
117 B
C
Raw Normal View History

1988-04-19 09:34:37 +00:00
#include "lib.h"
PUBLIC int close(fd)
int fd;
{
return callm1(FS, CLOSE, fd, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
}