lstat.c 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * lstat() 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. /* need to hide the 64bit prototype or the strong_alias()
  10. * will fail when __NR_lstat64 doesnt exist */
  11. #define lstat64 __hidelstat64
  12. #include <sys/syscall.h>
  13. #include <unistd.h>
  14. #include <sys/stat.h>
  15. #include "xstatconv.h"
  16. #undef lstat64
  17. libc_hidden_proto(lstat)
  18. #define __NR___syscall_lstat __NR_lstat
  19. static __inline__ _syscall2(int, __syscall_lstat,
  20. const char *, file_name, struct kernel_stat *, buf);
  21. int lstat(const char *file_name, struct stat *buf)
  22. {
  23. int result;
  24. struct kernel_stat kbuf;
  25. result = __syscall_lstat(file_name, &kbuf);
  26. if (result == 0) {
  27. __xstat_conv(&kbuf, buf);
  28. }
  29. return result;
  30. }
  31. libc_hidden_def(lstat)
  32. #if ! defined __NR_lstat64 && defined __UCLIBC_HAS_LFS__
  33. extern __typeof(lstat) lstat64;
  34. libc_hidden_proto(lstat64)
  35. strong_alias(lstat,lstat64)
  36. libc_hidden_def(lstat64)
  37. #endif