]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - libexec/bootpd/bptypes.h
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / libexec / bootpd / bptypes.h
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
20 typedef int boolean;
21 typedef unsigned char byte;
22
23 #endif  /* BPTYPES_H */