diff options
author | Khem Raj <kraj@mvista.com> | 2007-03-08 18:11:34 +0000 |
---|---|---|
committer | Khem Raj <kraj@mvista.com> | 2007-03-08 18:11:34 +0000 |
commit | 8e3683e96af9e86e612cf60fffa7723a556c2f05 (patch) | |
tree | d56d993ac01c146393a074c09c4fe8edec070c52 /libc | |
parent | f95dae5414eee27c4d0f3ec71e7784ed6ba810f5 (diff) |
Sync kernel_stat64 with kernel. Thanks to Daniel Jacobowitz for hints.
Diffstat (limited to 'libc')
-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; |