scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit e03b2e5bba1a3655dbcc57cce597123b469710c7
parent 7460e0903f9899f56cfb3ca8a2ee0d9076fcefba
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Tue, 16 Aug 2022 17:29:57 +0200

libc/amd64: Add float.h

This float.h was automatically generated with
enquire and it must be reviewed.

Diffstat:
Ainclude/bits/amd64/arch/float.h | 31+++++++++++++++++++++++++++++++
Minclude/float.h | 2+-
2 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/include/bits/amd64/arch/float.h b/include/bits/amd64/arch/float.h @@ -0,0 +1,31 @@ +#define FLT_RADIX 2 +#define FLT_MANT_DIG 24 +#define FLT_DIG 6 +#define FLT_ROUNDS 1 +#define FLT_EPSILON 1.19209290e-07F +#define FLT_MIN_EXP (-125) +#define FLT_MIN 1.17549435e-38F +#define FLT_MIN_10_EXP (-37) +#define FLT_MAX_EXP 128 +#define FLT_MAX 3.40282347e+38F +#define FLT_MAX_10_EXP 38 + +#define DBL_MANT_DIG 53 +#define DBL_DIG 15 +#define DBL_EPSILON 2.2204460492503131e-16 +#define DBL_MIN_EXP (-1021) +#define DBL_MIN 2.2250738585072014e-308 +#define DBL_MIN_10_EXP (-307) +#define DBL_MAX_EXP 1024 +#define DBL_MAX 1.7976931348623157e+308 +#define DBL_MAX_10_EXP 308 + +#define LDBL_MANT_DIG 64 +#define LDBL_DIG 18 +#define LDBL_EPSILON 1.08420217248550443401e-19L +#define LDBL_MIN_EXP (-16381) +#define LDBL_MIN 3.36210314311209350626e-4932L +#define LDBL_MIN_10_EXP (-4931) +#define LDBL_MAX_EXP 16384 +#define LDBL_MAX 1.18973149535723176502e+4932L +#define LDBL_MAX_10_EXP 4932 diff --git a/include/float.h b/include/float.h @@ -1,6 +1,6 @@ #ifndef _FLOAT_H #define _FLOAT_H -#error float.h is not supported yet +#include <arch/float.h> #endif