diff options
-rw-r--r-- | libc/sysdeps/linux/arm/bits/kernel_stat.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libc/sysdeps/linux/arm/bits/kernel_stat.h b/libc/sysdeps/linux/arm/bits/kernel_stat.h index b3f8c37d0..b686c479a 100644 --- a/libc/sysdeps/linux/arm/bits/kernel_stat.h +++ b/libc/sysdeps/linux/arm/bits/kernel_stat.h @@ -58,13 +58,8 @@ struct kernel_stat64 { long long st_size; unsigned long st_blksize; -#if defined(__ARMEB__) - unsigned long __pad4; /* future possible st_blocks high bits */ - unsigned long st_blocks; /* Number 512-byte blocks allocated. */ -#else - unsigned long st_blocks; /* Number 512-byte blocks allocated. */ - unsigned long __pad4; /* future possible st_blocks high bits */ -#endif + unsigned long long st_blocks; /* Number 512-byte blocks allocated. */ + unsigned long st_atime; unsigned long st_atime_nsec; unsigned long st_mtime; |