Detect FPU by checking CPUID features.
[dragonfly.git] / contrib / bind-9.5.2 / lib / bind / port / freebsd / include / sys / bitypes.h
blobef3a6d48320890143d4ae9a9f5d95ddd9e39b531
1 /*
2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (c) 1996,1999 by Internet Software Consortium.
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.
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.
18 #ifndef __BIT_TYPES_DEFINED__
19 #define __BIT_TYPES_DEFINED__
22 * Basic integral types. Omit the typedef if
23 * not possible for a machine/compiler combination.
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;
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
37 #endif /* __BIT_TYPES_DEFINED__ */