projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
switch to using trap number 31 for syscalls on sh
[oweals/musl.git]
/
src
/
unistd
/
unlink.c
1
#include <unistd.h>
2
#include <fcntl.h>
3
#include "syscall.h"
4
5
int unlink(const char *path)
6
{
7
#ifdef SYS_unlink
8
return syscall(SYS_unlink, path);
9
#else
10
return syscall(SYS_unlinkat, AT_FDCWD, path, 0);
11
#endif
12
}