1994-06-28 01:25:48 +04:00
|
|
|
/* bptypes.h */
|
|
|
|
|
|
|
|
#ifndef BPTYPES_H
|
|
|
|
#define BPTYPES_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 32 bit integers are different types on various architectures
|
1994-12-23 19:52:30 +03:00
|
|
|
* XXX THE CORRECT WAY TO DO THIS IS:
|
|
|
|
* XXX (1) convert to _t form for all uses,
|
|
|
|
* XXX (2) define the _t's here (or somewhere)
|
|
|
|
* XXX if !defined(__BIT_TYPES_DEFINED__)
|
1994-06-28 01:25:48 +04:00
|
|
|
*/
|
|
|
|
|
1994-12-23 19:52:30 +03:00
|
|
|
typedef int32_t int32;
|
|
|
|
typedef u_int32_t u_int32;
|
1994-06-28 01:25:48 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Nice typedefs. . .
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef int boolean;
|
|
|
|
typedef unsigned char byte;
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* BPTYPES_H */
|