vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

close.c (127B)


      1 #include <fcntl.h>
      2 #include <errno.h>
      3 #include "syscall.h"
      4 
      5 int close(int fd)
      6 {
      7 	return syscall(VXSYSCLOSE, fd, 0, 0, 0, 0);
      8 }