blob: 81363a6b48b2e157967531fcf6565d99c1261886 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
int chroot(const char *path)
{
return syscall1(__NR_chroot, (long)path);
}