OSDN Git Service

LT.old: Make __errno_location/__h_errno_location thread safe
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / rmdir.c
index c22025c..d534b40 100644 (file)
@@ -2,11 +2,22 @@
 /*
  * rmdir() for uClibc
  *
- * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  *
- * GNU Library General Public License (LGPL) version 2 or later.
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 
-#include "syscalls.h"
+#include <sys/syscall.h>
 #include <unistd.h>
-_syscall1(int, rmdir, const char *, pathname);
+
+
+#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)