Use a consistent style for including <config.h>.
[gnulib.git] / lib / rmdir.c
1 /* BSD compatible remove directory function for System V
2
3    Copyright (C) 1988, 1990, 1999, 2003, 2004, 2005 Free Software
4    Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <errno.h>
27
28 #include "stat-macros.h"
29
30 /* rmdir adapted from GNU tar.  */
31
32 /* Remove directory DIR.
33    Return 0 if successful, -1 if not.  */
34
35 int
36 rmdir (char const *dir)
37 {
38   pid_t cpid;
39   int status;
40   struct stat statbuf;
41
42   if (stat (dir, &statbuf) != 0)
43     return -1;                  /* errno already set */
44
45   if (!S_ISDIR (statbuf.st_mode))
46     {
47       errno = ENOTDIR;
48       return -1;
49     }
50
51   cpid = fork ();
52   switch (cpid)
53     {
54     case -1:                    /* cannot fork */
55       return -1;                /* errno already set */
56
57     case 0:                     /* child process */
58       execl ("/bin/rmdir", "rmdir", dir, (char *) 0);
59       _exit (1);
60
61     default:                    /* parent process */
62
63       /* Wait for kid to finish.  */
64
65       while (wait (&status) != cpid)
66         /* Do nothing.  */ ;
67
68       if (status)
69         {
70
71           /* /bin/rmdir failed.  */
72
73           errno = EIO;
74           return -1;
75         }
76       return 0;
77     }
78 }