diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-07-15 12:42:32 +0000 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-09-11 14:35:07 -0300 |
commit | 90e1600f4f9e3a3dcbf0a91e23098b052c975a9d (patch) | |
tree | b2b8212e1811fce74f22a9d718abb9984517a4ee /sysdeps/unix/sysv/linux/fxstat.c | |
parent | c71d13a0984f677b294ee62eb0dd372e4ee5b32b (diff) | |
download | glibc-90e1600f4f9e3a3dcbf0a91e23098b052c975a9d.tar glibc-90e1600f4f9e3a3dcbf0a91e23098b052c975a9d.tar.gz glibc-90e1600f4f9e3a3dcbf0a91e23098b052c975a9d.tar.bz2 glibc-90e1600f4f9e3a3dcbf0a91e23098b052c975a9d.zip |
linux: Always define STAT_IS_KERNEL_STAT
It allows to check for its value instead of its existence.
Checked with a build for all affected ABIS.
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'sysdeps/unix/sysv/linux/fxstat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/fxstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/fxstat.c b/sysdeps/unix/sysv/linux/fxstat.c index ce474dcd47..a88404b5c3 100644 --- a/sysdeps/unix/sysv/linux/fxstat.c +++ b/sysdeps/unix/sysv/linux/fxstat.c @@ -38,7 +38,7 @@ __fxstat (int vers, int fd, struct stat *buf) if (vers == _STAT_VER_KERNEL) return INLINE_SYSCALL (fstat, 2, fd, buf); -#ifdef STAT_IS_KERNEL_STAT +#if STAT_IS_KERNEL_STAT return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL); #else struct kernel_stat kbuf; |