remove.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       remove.c (220B)
       ---
            1 #include "syscall.h"
            2 
            3 int remove(const char *name)
            4 {
            5         return syscall(VXSYSREMOVE, (int)name, 0, 0, 0, 0);
            6 }
            7 
            8 int unlink(const char *name)
            9 {
           10         return remove(name);
           11 }
           12 
           13 int rmdir(const char *name)
           14 {        
           15         return remove(name);
           16 }