blob: 0e69f145dee37cbdc865f6cf6e222a1658d58cdc [file] [log] [blame]
#define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"
int chroot(const char *path)
{
return syscall(SYS_chroot, path);
}