blob: 5c362a174526bb82ab77e7ea80e8d18f45bf6470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* $NetBSD: bptypes.h,v 1.3 1998/01/09 08:09:05 perry Exp $ */
/* bptypes.h */
#ifndef BPTYPES_H
#define BPTYPES_H
/*
* 32 bit integers are different types on various architectures
* 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__)
*/
typedef int32_t int32;
typedef u_int32_t u_int32;
/*
* Nice typedefs. . .
*/
typedef int boolean;
typedef unsigned char byte;
#endif /* BPTYPES_H */
|