add getopt reset support
[musl] / src / stat / __lxstat.c
1 #include <sys/stat.h>
2 #include "libc.h"
3
4 int __lxstat(int ver, const char *path, struct stat *buf)
5 {
6         return lstat(path, buf);
7 }
8
9 LFS64(__lxstat);