153105Smarcel/* $FreeBSD$
253105Smarcel */
33229Spst
43229Spst#ifndef	BPTYPES_H
53229Spst#define	BPTYPES_H
63229Spst
753105Smarcel#include <sys/types.h>
853105Smarcel
93229Spst/*
103229Spst * 32 bit integers are different types on various architectures
113229Spst */
123229Spst
1353105Smarcel#define	int32	int32_t
1453105Smarcel#define	u_int32	u_int32_t
153229Spst
163229Spst/*
173229Spst * Nice typedefs. . .
183229Spst */
193229Spst
203229Spsttypedef int boolean;
213229Spsttypedef unsigned char byte;
223229Spst
233229Spst#endif	/* BPTYPES_H */
24