diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-10-23 16:40:06 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-12-29 16:44:05 -0300 |
commit | 4d97cc8cf3da925fd06fc37d4daebafce3247719 (patch) | |
tree | a8f43be6e51ce7e87c773622403f742dc55a387e /io/fstat64.c | |
parent | 69fda43b8dd795c3658869633ca0708ed3134006 (diff) | |
download | glibc-4d97cc8cf3da925fd06fc37d4daebafce3247719.tar.gz glibc-4d97cc8cf3da925fd06fc37d4daebafce3247719.tar.xz glibc-4d97cc8cf3da925fd06fc37d4daebafce3247719.zip |
io: Remove xstat implementations
With xstat wrapper functions removed (8ed005daf0), the stat functions are now properly exported, and version is done using symbols versioning instead of the extra _STAT_* argument. Reviewed-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'io/fstat64.c')
-rw-r--r-- | io/fstat64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/io/fstat64.c b/io/fstat64.c index 8f9a6a4ad0..505123ee0e 100644 --- a/io/fstat64.c +++ b/io/fstat64.c @@ -17,11 +17,10 @@ #include <sys/stat.h> -#undef __fstat64 int __fstat64 (int fd, struct stat64 *buf) { - return __fxstat64 (_STAT_VER, fd, buf); + return __fstatat64 (fd, "", buf, AT_EMPTY_PATH); } hidden_def (__fstat64) weak_alias (__fstat64, fstat64) |