diff options
Diffstat (limited to 'soft-fp/fmadf4.c')
-rw-r--r-- | soft-fp/fmadf4.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/soft-fp/fmadf4.c b/soft-fp/fmadf4.c index 7b7342b2e2..74e2360eb7 100644 --- a/soft-fp/fmadf4.c +++ b/soft-fp/fmadf4.c @@ -25,8 +25,9 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ -#include <libc-internal.h> -#include <sys/cdefs.h> +#include <math.h> +#include <libc-diag.h> + /* R_e is not set in cases where it is not used in packing, but the compiler does not see that it is set in all cases where it is used, resulting in warnings that it may be used uninitialized. @@ -35,7 +36,7 @@ macro is defined. */ DIAG_PUSH_NEEDS_COMMENT; DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wmaybe-uninitialized"); -#include <math.h> + #include "soft-fp.h" #include "double.h" |