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