chroot.c 549 B

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