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/__xstat.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/stat/__xstat.c (limited to 'src/stat/__xstat.c') diff --git a/src/stat/__xstat.c b/src/stat/__xstat.c new file mode 100644 index 00000000..42011d5f --- /dev/null +++ b/src/stat/__xstat.c @@ -0,0 +1,9 @@ +#include +#include "libc.h" + +int __xstat(int ver, const char *path, struct stat *buf) +{ + return stat(path, buf); +} + +LFS64(__xstat); -- cgit 1.4.1