toaruos/libc/unistd/rmdir.c

8 lines
106 B
C

#include <unistd.h>
#include <errno.h>
int rmdir(const char *pathname) {
errno = ENOTSUP;
return -1;
}