1 /* $FreeBSD: src/libexec/bootpd/bptypes.h,v 1.2 1999/11/12 10:11:48 marcel Exp $ 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 20 typedef int boolean; 21 typedef unsigned char byte; 22 23 #endif /* BPTYPES_H */ 24