1/* $FreeBSD$
2 */
3
4#ifndef	BPTYPES_H
5#define	BPTYPES_H
6
7#include <sys/types.h>
8
9/*
10 * 32 bit integers are different types on various architectures
11 */
12
13#define	int32	int32_t
14#define	u_int32	u_int32_t
15
16/*
17 * Nice typedefs. . .
18 */
19
20typedef int boolean;
21typedef unsigned char byte;
22
23#endif	/* BPTYPES_H */
24