9 lines
192 B
C
9 lines
192 B
C
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include "syscall.h"
|
|
|
|
int remove(const char *path)
|
|
{
|
|
int r = syscall(SYS_unlink, path);
|
|
return (r && errno == EISDIR) ? syscall(SYS_rmdir, path) : r;
|
|
}
|