aboutsummaryrefslogtreecommitdiff
path: root/sys/sparc64
diff options
context:
space:
mode:
authorGarance A Drosehn <gad@FreeBSD.org>2004-03-10 17:39:05 +0000
committerGarance A Drosehn <gad@FreeBSD.org>2004-03-10 17:39:05 +0000
commitec9b318eaf513417b37e838bbf67f2a39bb922ad (patch)
tree025c15a211ee89fb04e544ed967ea9b57d47647c /sys/sparc64
parenta3fc6c720846a1e91112828839cab90daf77682f (diff)
downloadsrc-ec9b318eaf513417b37e838bbf67f2a39bb922ad.tar.gz
src-ec9b318eaf513417b37e838bbf67f2a39bb922ad.zip
Change time_t from a 32-bit value to a 64-bit value, on FreeBSD/sparc64
only. This is a MAJOR incompatible change for the sparc64 platform, but will not effect FreeBSD on other architectures. Reviewed by: imp for UPDATING, freebsd-sparc for the change itself.
Notes
Notes: svn path=/head/; revision=126817
Diffstat (limited to 'sys/sparc64')
-rw-r--r--sys/sparc64/include/_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/include/_types.h b/sys/sparc64/include/_types.h
index 933a7a3dfd20..5c9ceec7e656 100644
--- a/sys/sparc64/include/_types.h
+++ b/sys/sparc64/include/_types.h
@@ -74,7 +74,7 @@ typedef __int64_t __register_t;
typedef __int64_t __segsz_t; /* segment size (in pages) */
typedef __uint64_t __size_t; /* sizeof() */
typedef __int64_t __ssize_t; /* byte count or error */
-typedef __int32_t __time_t; /* time()... */
+typedef __int64_t __time_t; /* time()... */
typedef __uint64_t __uintfptr_t;
typedef __uint64_t __uintmax_t;
typedef __uint64_t __uintptr_t;