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