summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/vax/include/ansi.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/vax/include/ansi.h b/sys/arch/vax/include/ansi.h
index 8eb1247153f..c1869523d34 100644
--- a/sys/arch/vax/include/ansi.h
+++ b/sys/arch/vax/include/ansi.h
@@ -1,4 +1,4 @@
-/* $NetBSD: ansi.h,v 1.13 2001/01/13 03:48:26 matt Exp $ */
+/* $NetBSD: ansi.h,v 1.14 2001/07/28 05:04:45 matt Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -52,17 +52,19 @@
*
* Thanks, ANSI!
*/
-#define _BSD_CLOCK_T_ unsigned long int /* clock() */
#ifdef __ELF__
+#define _BSD_CLOCK_T_ int /* clock() */
#define _BSD_PTRDIFF_T_ long int /* ptr1 - ptr2 */
#define _BSD_SIZE_T_ unsigned long int /* sizeof() */
#define _BSD_SSIZE_T_ long int /* byte count or error */
+#define _BSD_TIME_T_ int /* time() */
#else
+#define _BSD_CLOCK_T_ unsigned long 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 */
-#endif
#define _BSD_TIME_T_ long /* time() */
+#endif
#if __GNUC_PREREQ__(2,96)
#define _BSD_VA_LIST_ __builtin_va_list /* va_list */
#else