summaryrefslogtreecommitdiffstats
path: root/usr/klibc/rmdir.c
blob: 94ae5f2bc51f194f0098caf19b04dc3f790840e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <fcntl.h>
#include <unistd.h>
#include <sys/syscall.h>

#ifndef __NR_rmdir

int rmdir(const char *pathname)
{
	return unlinkat(AT_FDCWD, pathname, AT_REMOVEDIR);
}

#endif /* __NR_rmdir */