ref: 81ea3f24fa18e3bd313ff6f3b818908cecc98dcd
dir: /sys/src/ape/lib/ap/plan9/rmdir.c/
#include "lib.h"
#include <errno.h>
#include <unistd.h>
#include "sys9.h"
int
rmdir(const char *path)
{
int n;
n = 0;
if(_REMOVE(path) < 0) {
_syserrno();
n = -1;
}
return n;
}