diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-07 05:56:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-07 05:56:45 +0000 |
commit | ae611dc161fabeea53628f1aba3d4ce28d62d069 (patch) | |
tree | 92394bece140e73f499b631fda5553867261a4f5 | |
parent | c9e0b6a6baf4b19a6e9197cb17faa9bf1e7133e4 (diff) |
Too many things include <machine/ansi.h> w/o <sys/types.h> so
make time_t int not int32_t.
-rw-r--r-- | sys/arch/alpha/include/ansi.h | 4 | ||||
-rw-r--r-- | sys/arch/arc/include/ansi.h | 4 | ||||
-rw-r--r-- | sys/arch/arm32/include/ansi.h | 2 | ||||
-rw-r--r-- | sys/arch/i386/include/ansi.h | 4 | ||||
-rw-r--r-- | sys/arch/m68k/include/ansi.h | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/include/ansi.h | 4 | ||||
-rw-r--r-- | sys/arch/pc532/include/ansi.h | 2 | ||||
-rw-r--r-- | sys/arch/pmax/include/ansi.h | 2 | ||||
-rw-r--r-- | sys/arch/powerpc/include/ansi.h | 4 | ||||
-rw-r--r-- | sys/arch/sparc/include/ansi.h | 2 | ||||
-rw-r--r-- | sys/arch/vax/include/ansi.h | 4 | ||||
-rw-r--r-- | sys/arch/wgrisc/include/ansi.h | 4 |
12 files changed, 20 insertions, 20 deletions
diff --git a/sys/arch/alpha/include/ansi.h b/sys/arch/alpha/include/ansi.h index e080cb6a6f0..dfbe4e1a7c3 100644 --- a/sys/arch/alpha/include/ansi.h +++ b/sys/arch/alpha/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.7 1997/07/05 21:09:07 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.8 1997/07/07 05:56:34 millert Exp $ */ /* $NetBSD: ansi.h,v 1.6 1996/11/15 22:38:45 jtc Exp $ */ /*- @@ -52,7 +52,7 @@ #define _BSD_PTRDIFF_T_ long /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned long /* sizeof() */ #define _BSD_SSIZE_T_ long /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ typedef struct { char *base; int offset; diff --git a/sys/arch/arc/include/ansi.h b/sys/arch/arc/include/ansi.h index 865199a944d..9bc77c35c23 100644 --- a/sys/arch/arc/include/ansi.h +++ b/sys/arch/arc/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.3 1997/07/05 21:09:08 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.4 1997/07/07 05:56:35 millert Exp $ */ /* $NetBSD: ansi.h,v 1.5 1994/10/26 21:09:33 cgd Exp $ */ /*- @@ -52,7 +52,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/arm32/include/ansi.h b/sys/arch/arm32/include/ansi.h index 725a87027d9..9808e5d9e59 100644 --- a/sys/arch/arm32/include/ansi.h +++ b/sys/arch/arm32/include/ansi.h @@ -51,7 +51,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/i386/include/ansi.h b/sys/arch/i386/include/ansi.h index 0a993c5c7be..30236051613 100644 --- a/sys/arch/i386/include/ansi.h +++ b/sys/arch/i386/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.5 1997/07/05 21:09:09 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.6 1997/07/07 05:56:37 millert Exp $ */ /* $NetBSD: ansi.h,v 1.7 1996/11/15 22:38:50 jtc Exp $ */ /*- @@ -52,7 +52,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/m68k/include/ansi.h b/sys/arch/m68k/include/ansi.h index 2d2796d9f5a..1a734fe7c00 100644 --- a/sys/arch/m68k/include/ansi.h +++ b/sys/arch/m68k/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.4 1997/07/05 21:09:10 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.5 1997/07/07 05:56:37 millert Exp $ */ /* $NetBSD: ansi.h,v 1.7 1996/11/15 22:38:52 jtc Exp $ */ /*- @@ -52,7 +52,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/mvme88k/include/ansi.h b/sys/arch/mvme88k/include/ansi.h index 32688afecd9..2bdffc0af08 100644 --- a/sys/arch/mvme88k/include/ansi.h +++ b/sys/arch/mvme88k/include/ansi.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)ansi.h 8.2 (Berkeley) 1/4/94 - * $Id: ansi.h,v 1.5 1997/07/05 21:09:11 millert Exp $ + * $Id: ansi.h,v 1.6 1997/07/07 05:56:38 millert Exp $ */ #ifndef _ANSI_H_ @@ -50,7 +50,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/pc532/include/ansi.h b/sys/arch/pc532/include/ansi.h index e6881069570..3dbef15315a 100644 --- a/sys/arch/pc532/include/ansi.h +++ b/sys/arch/pc532/include/ansi.h @@ -51,7 +51,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/pmax/include/ansi.h b/sys/arch/pmax/include/ansi.h index 15545046338..02a367d0335 100644 --- a/sys/arch/pmax/include/ansi.h +++ b/sys/arch/pmax/include/ansi.h @@ -51,7 +51,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/powerpc/include/ansi.h b/sys/arch/powerpc/include/ansi.h index a17c8cff23e..51e8d03f272 100644 --- a/sys/arch/powerpc/include/ansi.h +++ b/sys/arch/powerpc/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.4 1997/07/05 21:09:13 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.5 1997/07/07 05:56:41 millert Exp $ */ /* $NetBSD: ansi.h,v 1.2 1996/11/15 22:38:57 jtc Exp $ */ /*- @@ -52,7 +52,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ struct __gnuc_va_list__; #define _BSD_VA_LIST_ struct __gnuc_va_list__ * /* va_list */ #define _BSD_CLOCKID_T_ int diff --git a/sys/arch/sparc/include/ansi.h b/sys/arch/sparc/include/ansi.h index dd588c65449..ecb80ec50d7 100644 --- a/sys/arch/sparc/include/ansi.h +++ b/sys/arch/sparc/include/ansi.h @@ -51,7 +51,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int diff --git a/sys/arch/vax/include/ansi.h b/sys/arch/vax/include/ansi.h index f449725a209..6c8d17f049f 100644 --- a/sys/arch/vax/include/ansi.h +++ b/sys/arch/vax/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.5 1997/07/05 21:09:14 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.6 1997/07/07 05:56:43 millert Exp $ */ /* $NetBSD: ansi.h,v 1.5 1996/11/15 22:39:01 jtc Exp $ */ /*- @@ -54,7 +54,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_WCHAR_T_ int /* wchar_t */ #define _BSD_WINT_T_ int /* wint_t */ diff --git a/sys/arch/wgrisc/include/ansi.h b/sys/arch/wgrisc/include/ansi.h index 84050e0feb8..7b5a99d23ec 100644 --- a/sys/arch/wgrisc/include/ansi.h +++ b/sys/arch/wgrisc/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.4 1997/07/05 21:09:15 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.5 1997/07/07 05:56:44 millert Exp $ */ /* $NetBSD: ansi.h,v 1.5 1994/10/26 21:09:33 cgd Exp $ */ /*- @@ -52,7 +52,7 @@ #define _BSD_PTRDIFF_T_ int /* ptr1 - ptr2 */ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ -#define _BSD_TIME_T_ int32_t /* time() */ +#define _BSD_TIME_T_ int /* time() */ #define _BSD_VA_LIST_ char * /* va_list */ #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int |