1178620Smarcel/* $NetBSD: milieu.h,v 1.1 2000/12/29 20:13:54 bjh21 Exp $ */
2178620Smarcel/* $FreeBSD$ */
3178620Smarcel
4178620Smarcel/*
5178620Smarcel===============================================================================
6178620Smarcel
7178620SmarcelThis C header file is part of the SoftFloat IEC/IEEE Floating-point
8178620SmarcelArithmetic Package, Release 2a.
9178620Smarcel
10178620SmarcelWritten by John R. Hauser.  This work was made possible in part by the
11178620SmarcelInternational Computer Science Institute, located at Suite 600, 1947 Center
12178620SmarcelStreet, Berkeley, California 94704.  Funding was partially provided by the
13178620SmarcelNational Science Foundation under grant MIP-9311980.  The original version
14178620Smarcelof this code was written as part of a project to build a fixed-point vector
15178620Smarcelprocessor in collaboration with the University of California at Berkeley,
16178620Smarceloverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
17178620Smarcelis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
18178620Smarcelarithmetic/SoftFloat.html'.
19178620Smarcel
20178620SmarcelTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
21178620Smarcelhas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
22178620SmarcelTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
23178620SmarcelPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
24178620SmarcelAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
25178620Smarcel
26178620SmarcelDerivative works are acceptable, even for commercial purposes, so long as
27178620Smarcel(1) they include prominent notice that the work is derivative, and (2) they
28178620Smarcelinclude prominent notice akin to these four paragraphs for those parts of
29178620Smarcelthis code that are retained.
30178620Smarcel
31178620Smarcel===============================================================================
32178620Smarcel*/
33178620Smarcel
34178620Smarcel/*
35178620Smarcel-------------------------------------------------------------------------------
36178620SmarcelInclude common integer types and flags.
37178620Smarcel-------------------------------------------------------------------------------
38178620Smarcel*/
39178620Smarcel#include "powerpc-gcc.h"
40178620Smarcel
41178620Smarcel/*
42178620Smarcel-------------------------------------------------------------------------------
43178620SmarcelSymbolic Boolean literals.
44178620Smarcel-------------------------------------------------------------------------------
45178620Smarcel*/
46178620Smarcelenum {
47178620Smarcel    FALSE = 0,
48178620Smarcel    TRUE  = 1
49178620Smarcel};
50