summaryrefslogtreecommitdiff
path: root/rmdir.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-05 16:24:54 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-05 16:24:54 +0000
commitcc8ed39b240180b58810784f844e253263594ac3 (patch)
tree15feebbb4be9a9168209609f48f0b100f9364420 /rmdir.c
downloadbusybox-w32-0_29alpha2.tar.gz
busybox-w32-0_29alpha2.tar.bz2
busybox-w32-0_29alpha2.zip
Initial revision0_29alpha2
Diffstat (limited to 'rmdir.c')
-rw-r--r--rmdir.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/rmdir.c b/rmdir.c
new file mode 100644
index 000000000..069e68546
--- /dev/null
+++ b/rmdir.c
@@ -0,0 +1,17 @@
1#include "internal.h"
2#include <errno.h>
3
4const char rmdir_usage[] = "rmdir directory [directory ...]\n"
5"\n"
6"\tDelete directories.\n";
7
8extern int
9rmdir_fn(const struct FileInfo * i)
10{
11 if ( rmdir(i->source) != 0 && errno != ENOENT && !i->force ) {
12 name_and_error(i->source);
13 return 1;
14 }
15 else
16 return 0;
17}