freebsd-dev/libexec/bootpd/bptypes.h
1994-09-30 05:45:07 +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 */