diff options
Diffstat (limited to 'src/stat/__xstat.c')
-rw-r--r-- | src/stat/__xstat.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/stat/__xstat.c b/src/stat/__xstat.c index 42011d5f..8138cbe8 100644 --- a/src/stat/__xstat.c +++ b/src/stat/__xstat.c @@ -1,9 +1,27 @@ #include <sys/stat.h> #include "libc.h" +int __fxstat(int ver, int fd, struct stat *buf) +{ + return fstat(fd, buf); +} + +int __fxstatat(int ver, int fd, const char *path, struct stat *buf, int flag) +{ + return fstatat(fd, path, buf, flag); +} + +int __lxstat(int ver, const char *path, struct stat *buf) +{ + return lstat(path, buf); +} + int __xstat(int ver, const char *path, struct stat *buf) { return stat(path, buf); } +LFS64(__fxstat); +LFS64(__fxstatat); +LFS64(__lxstat); LFS64(__xstat); |