summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/chroot.c
blob: 5a895e13c71175350f233059f9af97f30a3498b6 (plain)
1
2
3
4
5
6
7
#include <syscall.h>
#include <unistd.h>

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