vx32

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