summaryrefslogtreecommitdiff
path: root/src/unistd/rmdir.c
blob: c2137acd64c9c36a55288fbf6de42e0b06969fe8 (plain)
1
2
3
4
5
6
7
8
9
#include "_syscall.h"

int rmdir(const char *path)
{
	SYSCALL(rmdir, int, -1, path, 0, 0, 0, 0, 0);
}
/*
POSIX(1)
*/