vx32

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

open.c (151B)


      1 #include <errno.h>
      2 #include "syscall.h"
      3 
      4 int open(const char *path, int flags, int mode)
      5 {
      6 	return syscall(VXSYSOPEN, (int)path, flags, mode, 0, 0);
      7 }