aboutsummaryrefslogtreecommitdiff
path: root/tracks.c
diff options
context:
space:
mode:
Diffstat (limited to 'tracks.c')
-rw-r--r--tracks.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tracks.c b/tracks.c
index 151f7fb..ea48510 100644
--- a/tracks.c
+++ b/tracks.c
@@ -21,7 +21,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"