rework langinfo code for ABI compat and for use by time code
[musl] / src / stat / __xstat.c
1 #include <sys/stat.h>
2 #include "libc.h"
3
4 int __xstat(int ver, const char *path, struct stat *buf)
5 {
6         return stat(path, buf);
7 }
8
9 LFS64(__xstat);