From 03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8 Mon Sep 17 00:00:00 2001 From: Jörg Thalheim Date: Mon, 10 Sep 2018 12:57:20 +0100 Subject: GitHub #28: Add missing math.h include for builtins math.h is required for isnan/isinf --- ChangeLog | 5 +++++ Src/builtin.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 94d8338bb..4b7559723 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-09-10 Jörg Thalheim + + * GitHub #28: Src/builtin.c: Add missing math.h include for + builtins + 2018-09-10 Peter Stephenson * 43426: Test/W02jobs.ztst: disable tests involving suspending diff --git a/Src/builtin.c b/Src/builtin.c index 93fa9112c..4abc7da35 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -33,6 +33,8 @@ #include "zsh.mdh" #include "builtin.pro" +#include + /* Builtins in the main executable */ static struct builtin builtins[] = -- cgit 1.4.1