aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-01-11 16:39:43 +0100
committerAnton Khirnov <anton@khirnov.net>2023-01-11 16:39:43 +0100
commit3fea3b8362b3e1f142c53ebb98decd6299ee6fcf (patch)
treed196f6fda6e1c5089f634bd7bb75b199b65d440b
parentda6889fcec7cc0772f351752f37eb42380da6630 (diff)
eval: add missing math.h include
-rw-r--r--eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 948468b..205019a 100644
--- a/eval.c
+++ b/eval.c
@@ -16,6 +16,7 @@
*/
#include <errno.h>
+#include <math.h>
#include <stdlib.h>
#include <string.h>