summaryrefslogtreecommitdiff
path: root/sys/arch/m68k/include/ansi.h
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/m68k/include/ansi.h
parent67f15be4ae25a9aa1f52d27a6c03ef773396c351 (diff)
Make clock_t consistent across platforms as a 32 bit int. OK deraadt@
Diffstat (limited to 'sys/arch/m68k/include/ansi.h')
-rw-r--r--sys/arch/m68k/include/ansi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/include/ansi.h b/sys/arch/m68k/include/ansi.h
index f068d138d80..cae10d363ea 100644
--- a/sys/arch/m68k/include/ansi.h
+++ b/sys/arch/m68k/include/ansi.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ansi.h,v 1.9 2005/04/14 20:56:24 espie Exp $ */
+/* $OpenBSD: ansi.h,v 1.10 2005/12/14 16:30:03 millert Exp $ */
/* $NetBSD: ansi.h,v 1.7 1996/11/15 22:38:52 jtc Exp $ */
/*-
@@ -44,7 +44,7 @@
* #undef _BSD_SIZE_T_
* #endif
*/
-#define _BSD_CLOCK_T_ unsigned long /* clock() */
+#define _BSD_CLOCK_T_ int /* clock() */
#define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */
#define _BSD_SIZE_T_ unsigned int /* sizeof() */
#define _BSD_SSIZE_T_ int /* byte count or error */