diff options
Diffstat (limited to 'hat.c')
| -rw-r--r-- | hat.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -12,7 +12,11 @@ */ #include <assert.h> -#include <tgmath.h> +#ifdef NO_TGMATH_H +# include <math.h> +#else +# include <tgmath.h> +#endif #include <stdbool.h> #include <stdio.h> #include <stdlib.h> |