chmod.c 678 B

123456789101112131415161718192021222324252627282930
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * chmod() 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 <sys/stat.h>
  11. #include <unistd.h>
  12. #if defined __NR_fchmodat && !defined __NR_chmod
  13. # include <fcntl.h>
  14. int chmod(const char *path, mode_t mode)
  15. {
  16. return fchmodat(AT_FDCWD, path, mode, 0);
  17. }
  18. #else
  19. # define __NR___syscall_chmod __NR_chmod
  20. static __inline__ _syscall2(int, __syscall_chmod, const char *, path, __kernel_mode_t, mode)
  21. int chmod(const char *path, mode_t mode)
  22. {
  23. return __syscall_chmod(path, mode);
  24. }
  25. #endif
  26. libc_hidden_def(chmod)