Expand PMF_FN_* macros.
[netbsd-mini2440.git] / usr.sbin / bootp / common / bptypes.h
blob4c7e03730efbcdc974e097fffcf1e3be8bb9e634
1 /* $NetBSD$ */
3 /* bptypes.h */
5 #ifndef BPTYPES_H
6 #define BPTYPES_H
8 /*
9 * 32 bit integers are different types on various architectures
10 * XXX THE CORRECT WAY TO DO THIS IS:
11 * XXX (1) convert to _t form for all uses,
12 * XXX (2) define the _t's here (or somewhere)
13 * XXX if !defined(__BIT_TYPES_DEFINED__)
16 typedef int32_t int32;
17 typedef u_int32_t u_int32;
20 * Nice typedefs. . .
23 typedef int boolean;
24 typedef unsigned char byte;
27 #endif /* BPTYPES_H */