index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
unistd
/
unlink.c
blob: 1d3859f93ef49a0578743e9cf1aba9cbe89ab6b3 (
plain
)
1
2
3
4
5
6
#include <syscall.h> int unlink(const char *path) { return syscall(unlink, path); }