diff options
Diffstat (limited to 'src/stat/__xstat.c')
-rw-r--r-- | src/stat/__xstat.c | 9 |
1 files changed, 9 insertions, 0 deletions
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 <sys/stat.h> +#include "libc.h" + +int __xstat(int ver, const char *path, struct stat *buf) +{ + return stat(path, buf); +} + +LFS64(__xstat); |