35 lines
718 B
C
35 lines
718 B
C
/*
|
|
* <float.h> - floating point stuffs
|
|
*
|
|
* This header is a part of the FENIX C Library and is free software.
|
|
* You can redistribute and/or modify it subject to the terms of the
|
|
* Clumsy Wolf Public License v4. For more details, see the file COPYING.
|
|
*
|
|
* The FENIX C Library is distributed WITH NO WARRANTY WHATSOEVER. See
|
|
* The CWPL for more details.
|
|
*/
|
|
|
|
#ifndef _FLOAT_H
|
|
#define _FLOAT_H
|
|
|
|
#define FLT_ROUNDS 1
|
|
|
|
#define FLT_EVAL_METHOD 0
|
|
|
|
#define FLT_RADIX 2
|
|
|
|
#define FLT_MANT_DIG 24
|
|
#define DBL_MANT_DIG 53
|
|
#define LDBL_MANT_DIG 113
|
|
|
|
#define DECIMAL_DIG 10
|
|
|
|
#define FLT_DIG 6
|
|
#define DBL_DIG 10
|
|
#define LDBL_DIG 10
|
|
|
|
#define FLT_MIN_10_EXP -37
|
|
#define DBL_MIN_10_EXP -37
|
|
#define LDBL_MIN_10_EXP -37
|
|
|
|
#endif
|