return result;
}
libc_hidden_def(fstat64)
+
+int __fxstat64(int version, int fd, struct stat64 *buf)
+{
+ return fstat64(fd, buf);
+}
#endif
}
libc_hidden_def(lstat64)
+
+int __lxstat64(int version, const char *file_name, struct stat64 *buf)
+{
+ return lstat64(file_name, buf);
+}
#endif
return __syscall_mknod(path, mode, k_dev);
}
libc_hidden_def(mknod)
+
+int __xmknod(int version, const char *path, mode_t mode, dev_t dev)
+{
+ return mknod(path, mode, dev);
+}
}
libc_hidden_def(stat)
+int __xstat(int version, const *file_name, struct stat *buf)
+{
+ return stat(file_name, buf);
+}
+
#if ! defined __NR_stat64 && defined __UCLIBC_HAS_LFS__
extern __typeof(stat) stat64;
libc_hidden_proto(stat64)
return result;
}
libc_hidden_def(stat64)
+
+int __xstat64(int version, const char *file_name, struct stat64 *buf)
+{
+ return stat64(file_name, buf);
+}
+
#endif