__lxstat.c 147 B

123456789
  1. #include <sys/stat.h>
  2. #include "libc.h"
  3. int __lxstat(int ver, const char *path, struct stat *buf)
  4. {
  5. return lstat(path, buf);
  6. }
  7. LFS64(__lxstat);