fix extern

This commit is contained in:
Stanislav Shwartsman 2024-03-30 19:44:14 +03:00
parent 7c1a23037a
commit 725aa43b9c
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ static float128 exp_arr[EXP_ARR_SIZE] =
PACK_FLOAT_128(0x3fd6ae7f3e733b81, 0xf11d8656b0ee8cb0) /* 15 */
};
extern float128 EvalPoly(float128_t x, const float128_t *arr, int n, float_status_t &status);
extern float128_t EvalPoly(float128_t x, const float128_t *arr, int n, float_status_t &status);
/* required -1 < x < 1 */
static float128_t poly_exp(float128_t x, float_status_t &status)

View File

@ -42,7 +42,7 @@ static const float128 float128_ln2inv2 =
#define SQRT2_HALF_SIG BX_CONST64(0xb504f333f9de6484)
extern float128 OddPoly(float128_t x, const float128_t *arr, int n, float_status_t &status);
extern float128_t OddPoly(float128_t x, const float128_t *arr, int n, float_status_t &status);
#define L2_ARR_SIZE 9