blob: eeb17d7b45f56f3b2b91f1108a610c0c6d81881f (
plain)
1
2
3
4
5
6
7
|
/* Test including <float.h> then <math.h> does not result in errors
from duplicate NAN and INFINITY macros. */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors" } */
#include <float.h>
#include <math.h>
|