From 4074a67434fc1f1a9bed7a896242faae25cd7fc2 Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Thu, 9 Jan 2020 16:22:15 +0100 Subject: Fixing issue with and fabs --- runtime/include/math.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/include/math.h b/runtime/include/math.h index 060968c8..d6475df1 100644 --- a/runtime/include/math.h +++ b/runtime/include/math.h @@ -3,6 +3,8 @@ #define isfinite(__y) (fpclassify((__y)) >= FP_ZERO) +#include_next + #ifndef COMPCERT_NO_FP_MACROS #define fmin(x, y) __builtin_fmin((x),(y)) #define fmax(x, y) __builtin_fmax((x),(y)) @@ -14,5 +16,4 @@ #define fmaf(x, y, z) __builtin_fmaf((x),(y),(z)) #endif -#include_next #endif -- cgit