From 9ea20dcbaafe790bb034adadf05698088a2f9fab Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 31 May 2012 23:32:09 -0400 Subject: add LSB ABI __xstat, etc. junk --- src/stat/__lxstat.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/stat/__lxstat.c (limited to 'src/stat/__lxstat.c') 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 +#include "libc.h" + +int __lxstat(int ver, const char *path, struct stat *buf) +{ + return lstat(path, buf); +} + +LFS64(__lxstat); -- cgit v1.2.1