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