summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2005-12-14 16:30:04 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2005-12-14 16:30:04 +0000
commitcc46846e928d590a18b99f4ef5b61957136d37d0 (patch)
tree79af737f0aeb6b910e298b2c20c4ea6ad99d2de2 /sys/arch/amd64
parent67f15be4ae25a9aa1f52d27a6c03ef773396c351 (diff)
Make clock_t consistent across platforms as a 32 bit int. OK deraadt@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/include/ansi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/amd64/include/ansi.h b/sys/arch/amd64/include/ansi.h
index 22d38425730..bed290fa130 100644
--- a/sys/arch/amd64/include/ansi.h
+++ b/sys/arch/amd64/include/ansi.h
@@ -47,7 +47,7 @@
* #undef _BSD_SIZE_T_
* #endif
*/
-#define _BSD_CLOCK_T_ unsigned int /* clock() */
+#define _BSD_CLOCK_T_ int /* clock() */
#define _BSD_PTRDIFF_T_ long /* ptr1 - ptr2 */
#define _BSD_SIZE_T_ unsigned long /* sizeof() */
#define _BSD_SSIZE_T_ long /* byte count or error */