k9core/src/rmdir.c

7 lines
74 B
C
Raw Normal View History

2020-06-01 20:18:42 +00:00
#include <unistd.h>
int
main(int argc, char *argv[]) {
rmdir(*argv);
}