1 /* rmdir - remove directory. Author: Kees J. Bot
13 write(2, what
, strlen(what
));
16 void report(char *label
)
18 char *err
= strerror(errno
);
27 int main(int argc
, char **argv
)
32 tell("Usage: rmdir directory ...\n");
38 if (rmdir(argv
[i
]) < 0) {
46 /* Kees J. Bot 27-12-90. */