open.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) 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 }