freebsd-dev/usr.sbin/bootpd/bptypes.h
Geoff Rehmet cc7d8003bf Bootpd 2.4.0 (and associated utils)
Obtained from:NetBSD
1994-09-10 14:44:56 +00:00

24 lines
303 B
C

/* bptypes.h */
#ifndef BPTYPES_H
#define BPTYPES_H
/*
* 32 bit integers are different types on various architectures
*/
#ifndef int32
#define int32 long
#endif
typedef unsigned int32 u_int32;
/*
* Nice typedefs. . .
*/
typedef int boolean;
typedef unsigned char byte;
#endif /* BPTYPES_H */