shithub: riscv

ref: a87c9cfc6ccd15814d0d59f7d20432fa97dc53eb
dir: /sys/src/ape/lib/ap/plan9/rmdir.c/

View raw version
#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;
}