24 lines
303 B
C
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 */
|