]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - libexec/bootpd/bptypes.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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 */