iostat - add read/write details to output
[dragonfly.git] / contrib / bind / lib / bind / port / freebsd / include / sys / bitypes.h
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            int8_t;
26         typedef unsigned char            u_int8_t;
27         typedef short                     int16_t;
28         typedef unsigned short          u_int16_t;
29         typedef int                       int32_t;
30         typedef unsigned int            u_int32_t;
31
32 # if 0  /* don't fight with these unless you need them */
33         typedef long long                 int64_t;
34         typedef unsigned long long      u_int64_t;
35 # endif
36
37 #endif  /* __BIT_TYPES_DEFINED__ */