1178580Simp/* $FreeBSD: releng/10.3/lib/libc/mips/softfloat/milieu.h 178580 2008-04-26 12:08:02Z imp $ */
2178580Simp
3178580Simp/*
4178580Simp===============================================================================
5178580Simp
6178580SimpThis C header file is part of the SoftFloat IEC/IEEE Floating-point
7178580SimpArithmetic Package, Release 2a.
8178580Simp
9178580SimpWritten by John R. Hauser.  This work was made possible in part by the
10178580SimpInternational Computer Science Institute, located at Suite 600, 1947 Center
11178580SimpStreet, Berkeley, California 94704.  Funding was partially provided by the
12178580SimpNational Science Foundation under grant MIP-9311980.  The original version
13178580Simpof this code was written as part of a project to build a fixed-point vector
14178580Simpprocessor in collaboration with the University of California at Berkeley,
15178580Simpoverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
16178580Simpis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
17178580Simparithmetic/SoftFloat.html'.
18178580Simp
19178580SimpTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
20178580Simphas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
21178580SimpTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
22178580SimpPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
23178580SimpAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
24178580Simp
25178580SimpDerivative works are acceptable, even for commercial purposes, so long as
26178580Simp(1) they include prominent notice that the work is derivative, and (2) they
27178580Simpinclude prominent notice akin to these four paragraphs for those parts of
28178580Simpthis code that are retained.
29178580Simp
30178580Simp===============================================================================
31178580Simp*/
32178580Simp
33178580Simp/*
34178580Simp-------------------------------------------------------------------------------
35178580SimpInclude common integer types and flags.
36178580Simp-------------------------------------------------------------------------------
37178580Simp*/
38178580Simp#include "mips-gcc.h"
39178580Simp
40178580Simp/*
41178580Simp-------------------------------------------------------------------------------
42178580SimpSymbolic Boolean literals.
43178580Simp-------------------------------------------------------------------------------
44178580Simp*/
45178580Simpenum {
46178580Simp    FALSE = 0,
47178580Simp    TRUE  = 1
48178580Simp};
49