Match and link CScriptMailbox and strtold

This commit is contained in:
2024-11-01 19:17:45 -07:00
parent 9dafdadac7
commit 0b74ded7ba
11 changed files with 574 additions and 9 deletions

View File

@@ -11,12 +11,16 @@ extern "C" {
#define FLT_MIN 1.175494351e-38f
#define DBL_DIG 6
#define DBL_MIN 5.8774717e-39
#define DBL_MAX (* (double *) __double_max)
#define DBL_MIN (*(double*)__double_min)
#define DBL_MAX (*(double*)__double_max)
#define DBL_EPSILON 1.1920929e-07
#define DBL_MANT_DIG 53
#define LDBL_MAX (*(long double*)__extended_max)
#define LDBL_EPSILON (*(long double*)__extended_epsilon)
#define LDBL_MIN (*(long double*)__extended_min)
#ifdef __cplusplus
}
#endif