LibC: Implement rmdir in unistd.h
This commit is contained in:
@@ -275,6 +275,11 @@ int unlink(const char* path)
|
||||
return syscall(SYS_UNLINK, path);
|
||||
}
|
||||
|
||||
int rmdir(const char* path)
|
||||
{
|
||||
return syscall(SYS_UNLINK, path);
|
||||
}
|
||||
|
||||
pid_t getpid(void)
|
||||
{
|
||||
return syscall(SYS_GET_PID);
|
||||
|
||||
Reference in New Issue
Block a user