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