1/*	$NetBSD$	*/
2
3/* bptypes.h */
4
5#ifndef	BPTYPES_H
6#define	BPTYPES_H
7
8/*
9 * 32 bit integers are different types on various architectures
10 * XXX THE CORRECT WAY TO DO THIS IS:
11 * XXX	(1) convert to _t form for all uses,
12 * XXX	(2) define the _t's here (or somewhere)
13 * XXX		if !defined(__BIT_TYPES_DEFINED__)
14 */
15
16typedef int32_t int32;
17typedef u_int32_t u_int32;
18
19/*
20 * Nice typedefs. . .
21 */
22
23typedef int boolean;
24typedef unsigned char byte;
25
26
27#endif	/* BPTYPES_H */
28