diff options
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/common/rmdir.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/rmdir.c b/libc/sysdeps/linux/common/rmdir.c index bad66544b..d534b40b1 100644 --- a/libc/sysdeps/linux/common/rmdir.c +++ b/libc/sysdeps/linux/common/rmdir.c @@ -11,5 +11,13 @@ #include <unistd.h> +#if defined __NR_unlinkat && !defined __NR_rmdir +# include <fcntl.h> +int rmdir(const char *pathname) +{ + return unlinkat(AT_FDCWD, pathname, AT_REMOVEDIR); +} +#else _syscall1(int, rmdir, const char *, pathname) +#endif libc_hidden_def(rmdir) |