summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/rmdir.c
blob: 70519c8564d8ab8f67004d3ffb15b0d4a27ad352 (plain)
1
2
3
4
5
6
7
8
#include "asm/unistd_64.h" // for __NR_rmdir

#include <syscall.h> // for __syscall_1, syscall

int rmdir(const char *path)
{
	return syscall(rmdir, path);
}