xref: /original-bsd/sys/hp300/include/ansi.h (revision cf2124ff)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)ansi.h	7.3 (Berkeley) 06/22/92
8  */
9 
10 #ifndef	_ANSI_H_
11 #define	_ANSI_H_
12 
13 /*
14  * Types which are fundamental to the implementation and may appear in
15  * more than one standard header are defined here.  Standard headers
16  * then use:
17  *	#ifdef	_BSD_SIZE_T_
18  *	typedef	_BSD_SIZE_T_ size_t;
19  *	#undef	_BSD_SIZE_T_
20  *	#endif
21  *
22  * Thanks, ANSI!
23  */
24 #define	_BSD_CLOCK_T_	unsigned long		/* clock() */
25 #define	_BSD_PTRDIFF_T_	int			/* ptr1 - ptr2 */
26 #define	_BSD_SIZE_T_	unsigned int		/* sizeof() */
27 #define	_BSD_SSIZE_T_	int			/* byte count or error */
28 #define	_BSD_TIME_T_	long			/* time() */
29 #define	_BSD_VA_LIST_	char *			/* va_list */
30 #define	_BSD_WCHAR_T_	unsigned short		/* wchar_t */
31 
32 #endif	/* _ANSI_H_ */
33