Added support for remove() and unlink().

This commit is contained in:
dtrg
2010-09-27 20:44:49 +00:00
parent a8ecb11013
commit 7292b538bc
4 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <stdarg.h>
#include "libsys.h"
int unlink(const char* path)
{
return _syscall(__NR_unlink, (quad) path, 0, 0);
}