summaryrefslogtreecommitdiff
path: root/src/stat/__lxstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/__lxstat.c')
-rw-r--r--src/stat/__lxstat.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stat/__lxstat.c b/src/stat/__lxstat.c
new file mode 100644
index 00000000..e9992ed2
--- /dev/null
+++ b/src/stat/__lxstat.c
@@ -0,0 +1,9 @@
+#include <sys/stat.h>
+#include "libc.h"
+
+int __lxstat(int ver, const char *path, struct stat *buf)
+{
+ return lstat(path, buf);
+}
+
+LFS64(__lxstat);