mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
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 */
|