11.2Smatt/* $NetBSD: milieu.h,v 1.2 2009/12/14 01:07:42 matt Exp $ */
21.2Smatt
31.2Smatt/*
41.2Smatt===============================================================================
51.2Smatt
61.2SmattThis C header file is part of the SoftFloat IEC/IEEE Floating-point
71.2SmattArithmetic Package, Release 2a.
81.2Smatt
91.2SmattWritten by John R. Hauser.  This work was made possible in part by the
101.2SmattInternational Computer Science Institute, located at Suite 600, 1947 Center
111.2SmattStreet, Berkeley, California 94704.  Funding was partially provided by the
121.2SmattNational Science Foundation under grant MIP-9311980.  The original version
131.2Smattof this code was written as part of a project to build a fixed-point vector
141.2Smattprocessor in collaboration with the University of California at Berkeley,
151.2Smattoverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
161.2Smattis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
171.2Smattarithmetic/SoftFloat.html'.
181.2Smatt
191.2SmattTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
201.2Smatthas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
211.2SmattTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
221.2SmattPERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
231.2SmattAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
241.2Smatt
251.2SmattDerivative works are acceptable, even for commercial purposes, so long as
261.2Smatt(1) they include prominent notice that the work is derivative, and (2) they
271.2Smattinclude prominent notice akin to these four paragraphs for those parts of
281.2Smattthis code that are retained.
291.2Smatt
301.2Smatt===============================================================================
311.2Smatt*/
321.2Smatt
331.2Smatt/*
341.2Smatt-------------------------------------------------------------------------------
351.2SmattInclude common integer types and flags.
361.2Smatt-------------------------------------------------------------------------------
371.2Smatt*/
381.2Smatt#include "mips-gcc.h"
391.2Smatt
401.2Smatt/*
411.2Smatt-------------------------------------------------------------------------------
421.2SmattSymbolic Boolean literals.
431.2Smatt-------------------------------------------------------------------------------
441.2Smatt*/
451.2Smattenum {
461.2Smatt    FALSE = 0,
471.2Smatt    TRUE  = 1
481.2Smatt};
49