bptypes.h revision 3229
13229Spst/* bptypes.h */
23229Spst
33229Spst#ifndef	BPTYPES_H
43229Spst#define	BPTYPES_H
53229Spst
63229Spst/*
73229Spst * 32 bit integers are different types on various architectures
83229Spst */
93229Spst
103229Spst#ifndef	int32
113229Spst#define int32 long
123229Spst#endif
133229Spsttypedef unsigned int32 u_int32;
143229Spst
153229Spst/*
163229Spst * Nice typedefs. . .
173229Spst */
183229Spst
193229Spsttypedef int boolean;
203229Spsttypedef unsigned char byte;
213229Spst
223229Spst
233229Spst#endif	/* BPTYPES_H */
24