1 /*
2  * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (c) 1996,1999 by Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  */
17 
18 #ifndef __BIT_TYPES_DEFINED__
19 #define __BIT_TYPES_DEFINED__
20 
21 	/*
22 	 * Basic integral types.  Omit the typedef if
23 	 * not possible for a machine/compiler combination.
24 	 */
25 	typedef /*signed*/ char           	   int8m_t;
26 	typedef unsigned char            u_int8_t, u_int8m_t;
27 	typedef short                     	   int16m_t;
28 	typedef unsigned short          u_int16_t, u_int16m_t;
29 	typedef int                       	   int32m_t;
30 	typedef unsigned int            u_int32_t, u_int32m_t;
31 
32 #ifdef __arch64__
33 	typedef long			  	   int64m_t;
34 	typedef unsigned long		u_int64_t, u_int64m_t;
35 #endif
36 
37 #ifndef _INTTYPES_H
38 	typedef signed char               int8_t;
39 	typedef signed short              int16_t;
40 	typedef signed int                int32_t;
41 	typedef unsigned char             uint8_t;
42 	typedef unsigned short            uint16_t;
43 	typedef unsigned int              uint32_t;
44 #ifdef __arch64__
45 	typedef signed long               int64_t;
46 	typedef unsigned long             uint64_t;
47 #endif
48 #endif
49 
50 #endif	/* __BIT_TYPES_DEFINED__ */
51