add LSB ABI __xstat, etc. junk
[musl] / src / stat / __lxstat.c
diff --git a/src/stat/__lxstat.c b/src/stat/__lxstat.c
new file mode 100644 (file)
index 0000000..e9992ed
--- /dev/null
@@ -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);