X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2F__lxstat.c;fp=src%2Fstat%2F__lxstat.c;h=e9992ed2b85aa60ae972e0bba51bf7575483e081;hb=9ea20dcbaafe790bb034adadf05698088a2f9fab;hp=0000000000000000000000000000000000000000;hpb=a541297617e567eadc7448e1af35d7bb20461a8c;p=musl 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);