chroot.c 523 B

12345678910111213141516171819202122
  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. #include <sys/syscall.h>
  9. #include <unistd.h>
  10. #include <string.h>
  11. #include <sys/param.h>
  12. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
  13. #define __NR___syscall_chroot __NR_chroot
  14. static __inline__ _syscall1(int, __syscall_chroot, const char *, path)
  15. int chroot(const char *path)
  16. {
  17. return __syscall_chroot(path);
  18. }
  19. #endif