1 /*        $NetBSD: bptypes.h,v 1.3 1998/01/09 08:09:05 perry Exp $    */
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 
16 typedef int32_t int32;
17 typedef u_int32_t u_int32;
18 
19 /*
20  * Nice typedefs. . .
21  */
22 
23 typedef int boolean;
24 typedef unsigned char byte;
25 
26 
27 #endif    /* BPTYPES_H */
28