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