1129202Scognet/* $NetBSD: milieu.h,v 1.1 2000/12/29 20:13:54 bjh21 Exp $ */
2129202Scognet/* $FreeBSD$ */
3129202Scognet
4129202Scognet/*
5129202Scognet===============================================================================
6129202Scognet
7129202ScognetThis C header file is part of the SoftFloat IEC/IEEE Floating-point
8129202ScognetArithmetic Package, Release 2a.
9129202Scognet
10129202ScognetWritten by John R. Hauser.  This work was made possible in part by the
11129202ScognetInternational Computer Science Institute, located at Suite 600, 1947 Center
12129202ScognetStreet, Berkeley, California 94704.  Funding was partially provided by the
13129202ScognetNational Science Foundation under grant MIP-9311980.  The original version
14129202Scognetof this code was written as part of a project to build a fixed-point vector
15129202Scognetprocessor in collaboration with the University of California at Berkeley,
16129202Scognetoverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
17129202Scognetis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
18129202Scognetarithmetic/SoftFloat.html'.
19129202Scognet
20129202ScognetTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
21129202Scognethas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
22129202ScognetTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
23129202ScognetPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
24129202ScognetAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
25129202Scognet
26129202ScognetDerivative works are acceptable, even for commercial purposes, so long as
27129202Scognet(1) they include prominent notice that the work is derivative, and (2) they
28129202Scognetinclude prominent notice akin to these four paragraphs for those parts of
29129202Scognetthis code that are retained.
30129202Scognet
31129202Scognet===============================================================================
32129202Scognet*/
33129202Scognet
34129202Scognet/*
35129202Scognet-------------------------------------------------------------------------------
36129202ScognetInclude common integer types and flags.
37129202Scognet-------------------------------------------------------------------------------
38129202Scognet*/
39129202Scognet#include "arm-gcc.h"
40129202Scognet
41129202Scognet/*
42129202Scognet-------------------------------------------------------------------------------
43129202ScognetSymbolic Boolean literals.
44129202Scognet-------------------------------------------------------------------------------
45129202Scognet*/
46129202Scognetenum {
47129202Scognet    FALSE = 0,
48129202Scognet    TRUE  = 1
49129202Scognet};
50