/* ----------------------------------------------------------------
 *   FILE
 *	float.h
 *
 *   DESCRIPTION
 *	definitions for ANSI floating point
 *
 *   NOTES
 *	These come straight out of ANSI X3.159-1989 (p.18) and
 *	would be unnecessary if SunOS 4 were ANSI-compliant.
 *
 *	This is only a partial listing because I'm lazy to type
 *	the whole thing in.
 *
 *   IDENTIFICATION
 *	/usr/local/devel/postgres-v4r2/src/backend/port/sparc/RCS/float.h,v 1.1 1994/02/09 00:17:30 aoki Exp
 * ----------------------------------------------------------------
 */

#ifndef floatIncluded		/* include this file only once */
#define floatIncluded	1

#define FLT_DIG	6
#define FLT_MIN	((float) 1.17549435e-38)
#define FLT_MAX	((float) 3.40282347e+38)
#define DBL_DIG	15
#define DBL_MIN	2.2250738585072014e-308
#define DBL_MAX	1.7976931348623157e+308

#endif /* floatIncluded */
