diff options
| author | Jörg Thalheim <joerg@thalheim.io> | 2018-09-10 12:57:20 +0100 |
|---|---|---|
| committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2018-09-10 13:05:46 +0000 |
| commit | 03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8 (patch) | |
| tree | 9d9109d0b482cee57ab06d46446486f48c1d3b37 /Src | |
| parent | 43426: disable job control tests involving suspension. (diff) | |
| download | zsh-03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8.tar zsh-03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8.tar.gz zsh-03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8.tar.bz2 zsh-03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8.tar.lz zsh-03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8.tar.xz zsh-03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8.tar.zst zsh-03a51a6f097a6e4a9bb8d94c2be17ec8a2e300b8.zip | |
GitHub #28: Add missing math.h include for builtins
math.h is required for isnan/isinf
Diffstat (limited to 'Src')
| -rw-r--r-- | Src/builtin.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 <math.h> + /* Builtins in the main executable */ static struct builtin builtins[] = |
