1129203Scognet/* $FreeBSD: releng/11.0/lib/libc/softfloat/templates/milieu.h 129203 2004-05-14 12:13:06Z cognet $ */
2129203Scognet
3129203Scognet/*
4129203Scognet===============================================================================
5129203Scognet
6129203ScognetThis C header file is part of the SoftFloat IEC/IEEE Floating-point
7129203ScognetArithmetic Package, Release 2a.
8129203Scognet
9129203ScognetWritten by John R. Hauser.  This work was made possible in part by the
10129203ScognetInternational Computer Science Institute, located at Suite 600, 1947 Center
11129203ScognetStreet, Berkeley, California 94704.  Funding was partially provided by the
12129203ScognetNational Science Foundation under grant MIP-9311980.  The original version
13129203Scognetof this code was written as part of a project to build a fixed-point vector
14129203Scognetprocessor in collaboration with the University of California at Berkeley,
15129203Scognetoverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
16129203Scognetis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
17129203Scognetarithmetic/SoftFloat.html'.
18129203Scognet
19129203ScognetTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
20129203Scognethas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
21129203ScognetTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
22129203ScognetPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
23129203ScognetAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
24129203Scognet
25129203ScognetDerivative works are acceptable, even for commercial purposes, so long as
26129203Scognet(1) they include prominent notice that the work is derivative, and (2) they
27129203Scognetinclude prominent notice akin to these four paragraphs for those parts of
28129203Scognetthis code that are retained.
29129203Scognet
30129203Scognet===============================================================================
31129203Scognet*/
32129203Scognet
33129203Scognet/*
34129203Scognet-------------------------------------------------------------------------------
35129203ScognetInclude common integer types and flags.
36129203Scognet-------------------------------------------------------------------------------
37129203Scognet*/
38129203Scognet#include "../../../processors/!!!processor.h"
39129203Scognet
40129203Scognet/*
41129203Scognet-------------------------------------------------------------------------------
42129203ScognetSymbolic Boolean literals.
43129203Scognet-------------------------------------------------------------------------------
44129203Scognet*/
45129203Scognetenum {
46129203Scognet    FALSE = 0,
47129203Scognet    TRUE  = 1
48129203Scognet};
49129203Scognet
50