summaryrefslogtreecommitdiff
path: root/src/linux/chroot.c
blob: 81363a6b48b2e157967531fcf6565d99c1261886 (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

int chroot(const char *path)
{
	return syscall1(__NR_chroot, (long)path);
}