1 /* BSD compatible remove directory function for System V
2 Copyright (C) 1988, 1990 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 #include <sys/types.h>
30 #if STAT_MACROS_BROKEN
34 #if !defined(S_ISDIR) && defined(S_IFDIR)
35 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
38 /* rmdir adapted from GNU tar. */
40 /* Remove directory DPATH.
41 Return 0 if successful, -1 if not. */
51 if (stat (dpath
, &statbuf
) != 0)
52 return -1; /* errno already set */
54 if (!S_ISDIR (statbuf
.st_mode
))
63 case -1: /* cannot fork */
64 return -1; /* errno already set */
66 case 0: /* child process */
67 execl ("/bin/rmdir", "rmdir", dpath
, (char *) 0);
70 default: /* parent process */
72 /* Wait for kid to finish. */
74 while (wait (&status
) != cpid
)
80 /* /bin/rmdir failed. */