git: 9front

ref: 80a55ed613eb23bf3f87db56e59f167eed723c81
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;
}