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 /sys/arch/mvme88k | |
parent | c9e0b6a6baf4b19a6e9197cb17faa9bf1e7133e4 (diff) |
Too many things include <machine/ansi.h> w/o <sys/types.h> so
make time_t int not int32_t.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/include/ansi.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |