diff options
Diffstat (limited to 'grid.c')
| -rw-r--r-- | grid.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -13,7 +13,11 @@ #include <ctype.h> #include <float.h> #include <limits.h> -#include <tgmath.h> +#ifdef NO_TGMATH_H +# include <math.h> +#else +# include <tgmath.h> +#endif #include "puzzles.h" #include "tree234.h" |