milieu.h revision 259065
175584Sru/* $NetBSD: milieu.h,v 1.1 2000/12/29 20:13:54 bjh21 Exp $ */
2151503Sru/* $FreeBSD: releng/10.0/lib/libc/powerpc/softfloat/milieu.h 178620 2008-04-27 18:34:34Z marcel $ */
375584Sru
475584Sru/*
575584Sru===============================================================================
6104862Sru
775584SruThis C header file is part of the SoftFloat IEC/IEEE Floating-point
8104862SruArithmetic Package, Release 2a.
9104862Sru
1075584SruWritten by John R. Hauser.  This work was made possible in part by the
1175584SruInternational Computer Science Institute, located at Suite 600, 1947 Center
12104862SruStreet, Berkeley, California 94704.  Funding was partially provided by the
1375584SruNational Science Foundation under grant MIP-9311980.  The original version
14104862Sruof this code was written as part of a project to build a fixed-point vector
15104862Sruprocessor in collaboration with the University of California at Berkeley,
16104862Sruoverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
17104862Sruis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
18104862Sruarithmetic/SoftFloat.html'.
19104862Sru
20104862SruTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
21104862Sruhas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
22104862SruTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
23104862SruPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
24104862SruAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
25114402Sru
26114402SruDerivative works are acceptable, even for commercial purposes, so long as
27114402Sru(1) they include prominent notice that the work is derivative, and (2) they
28114402Sruinclude prominent notice akin to these four paragraphs for those parts of
29104862Sruthis code that are retained.
30104862Sru
31104862Sru===============================================================================
32114402Sru*/
33114402Sru
34104862Sru/*
35104862Sru-------------------------------------------------------------------------------
36104862SruInclude common integer types and flags.
37104862Sru-------------------------------------------------------------------------------
38104862Sru*/
39104862Sru#include "powerpc-gcc.h"
40114402Sru
41104862Sru/*
42104862Sru-------------------------------------------------------------------------------
43104862SruSymbolic Boolean literals.
44114402Sru-------------------------------------------------------------------------------
45114402Sru*/
46104862Sruenum {
47104862Sru    FALSE = 0,
48114402Sru    TRUE  = 1
49104862Sru};
50104862Sru