diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-02-04 09:24:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-02-04 09:24:56 +0000 |
commit | 70c8f81bb83dad4c073eef246f6504fc8a8d3131 (patch) | |
tree | 6744cf77ec683530b8c6468f85bf7835c5f99718 /libc/sysdeps/linux/mips/bits | |
parent | c64e7777b371e7c0d823368b0f48d92cbd268903 (diff) |
sync some stuff from glibc to fix test build failure
Diffstat (limited to 'libc/sysdeps/linux/mips/bits')
-rw-r--r-- | libc/sysdeps/linux/mips/bits/stat.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/mips/bits/stat.h b/libc/sysdeps/linux/mips/bits/stat.h index 0bbc84ea4..5364499a3 100644 --- a/libc/sysdeps/linux/mips/bits/stat.h +++ b/libc/sysdeps/linux/mips/bits/stat.h @@ -1,4 +1,5 @@ -/* Copyright (C) 1992,95,96,97,98,99,2000,2001 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -35,7 +36,7 @@ #define _MKNOD_VER _MKNOD_VER_LINUX /* The bits defined below. */ -#if _MIPS_SIM == _MIPS_SIM_ABI32 +#if _MIPS_SIM == _ABIO32 /* Structure describing file characteristics. */ struct stat { @@ -65,11 +66,11 @@ struct stat * st_ctime but we don't have it under Linux. */ __time_t st_atime; /* Time of last access. */ - long int __reserved0; + unsigned long int st_atimensec; /* Nscecs of last access. */ __time_t st_mtime; /* Time of last modification. */ - long int __reserved1; + unsigned long int st_mtimensec; /* Nsecs of last modification. */ __time_t st_ctime; /* Time of last status change. */ - long int __reserved2; + unsigned long int st_ctimensec; /* Nsecs of last status change. */ __blksize_t st_blksize; /* Optimal block size for I/O. */ #ifndef __USE_FILE_OFFSET64 __blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */ @@ -110,7 +111,7 @@ struct stat { #endif /* N32 || N64 */ #ifdef __USE_LARGEFILE64 -#if _MIPS_SIM == _MIPS_SIM_ABI32 +#if _MIPS_SIM == _ABIO32 struct stat64 { __dev_t st_dev; |