diff options
Diffstat (limited to 'solo.c')
| -rw-r--r-- | solo.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -87,7 +87,11 @@ #include <string.h> #include <assert.h> #include <ctype.h> -#include <tgmath.h> +#ifdef NO_TGMATH_H +# include <math.h> +#else +# include <tgmath.h> +#endif #ifdef STANDALONE_SOLVER #include <stdarg.h> |