diff options
author | mike <mike@FreeBSD.org> | 2002-08-22 00:28:24 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-08-22 00:28:24 +0000 |
commit | 02c9dde601f6574cda62e65c86740d51e271605c (patch) | |
tree | 7b8bae84b99c72e63d14ac24f13c6ccf54db7794 | |
parent | 7e6b0a1f9d0a3a3e0203c024f7e575767d9cd196 (diff) | |
download | FreeBSD-src-02c9dde601f6574cda62e65c86740d51e271605c.zip FreeBSD-src-02c9dde601f6574cda62e65c86740d51e271605c.tar.gz |
Make __clock_t use `unsigned long' rather than a fixed 32-bit integer
so that it changes to the correct size in IP32L64 mode. Other
architectures don't have this issue.
-rw-r--r-- | sys/i386/include/_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/include/_types.h b/sys/i386/include/_types.h index 34cf3e8..c6f8e16 100644 --- a/sys/i386/include/_types.h +++ b/sys/i386/include/_types.h @@ -62,7 +62,7 @@ typedef unsigned long long __uint64_t; /* * Standard type definitions. */ -typedef __uint32_t __clock_t; /* clock()... */ +typedef unsigned long __clock_t; /* clock()... */ typedef __int32_t __clockid_t; /* clock_gettime()... */ typedef __int32_t __critical_t; typedef __uint32_t __fflags_t; /* file flags */ |