1 /*
2  * chroot() for uClibc
3  *
4  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
5  *
6  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7  */
8 
9 #include <sys/syscall.h>
10 #include <unistd.h>
11 #include <string.h>
12 #include <sys/param.h>
13 
14 #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
15 #define __NR___syscall_chroot __NR_chroot
_syscall1(int,__syscall_chroot,const char *,path)16 static __inline__ _syscall1(int, __syscall_chroot, const char *, path)
17 
18 int chroot(const char *path)
19 {
20 	return __syscall_chroot(path);
21 }
22 #endif
23