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.
This commit is contained in:
Mike Barcroft 2002-08-22 00:28:24 +00:00
parent a237f70d50
commit fb6cc33daf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102243

View file

@ -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 */