Sign in
mojo
/
mojo-tools
/
751f4d3c32cbd11f0bfd44c5facf6c62173310bf
/
.
/
fusl
/
src
/
unistd
/
rmdir.c
blob: 6825ffc8359a557790d278c8827061b9ed18564a [
file
]
#include
<unistd.h>
#include
<fcntl.h>
#include
"syscall.h"
int
rmdir
(
const
char
*
path
)
{
#ifdef
SYS_rmdir
return
syscall
(
SYS_rmdir
,
path
);
#else
return
syscall
(
SYS_unlinkat
,
AT_FDCWD
,
path
,
AT_REMOVEDIR
);
#endif
}