summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-10-22 03:47:43 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-10-22 03:52:27 +0200
commita8336e957aee920c3da2e2bc049e5615936d3f11 (patch)
tree82bf83978a1176132f4ed25946cf2fb8b6e8b253
parentf1c0fe7e8d6996e250418bf187b383418f238273 (diff)
alpha: fix kernel_stat struct
-rw-r--r--libc/sysdeps/linux/alpha/bits/kernel_stat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/alpha/bits/kernel_stat.h b/libc/sysdeps/linux/alpha/bits/kernel_stat.h
index e919b210d..32830fe2d 100644
--- a/libc/sysdeps/linux/alpha/bits/kernel_stat.h
+++ b/libc/sysdeps/linux/alpha/bits/kernel_stat.h
@@ -13,9 +13,9 @@ struct kernel_stat {
unsigned int st_gid;
unsigned int st_rdev;
long int st_size;
- unsigned long st_atime;
- unsigned long st_mtime;
- unsigned long st_ctime;
+ struct timespec st_atim;
+ struct timespec st_mtim;
+ struct timespec st_ctim;
unsigned int st_blksize;
int st_blocks;
unsigned int st_flags;