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