mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-06 09:01:13 +02:00
GitHub #28: Add missing math.h include for builtins
math.h is required for isnan/isinf
This commit is contained in:
parent
d6859ce68e
commit
03a51a6f09
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2018-09-10 Jörg Thalheim <joerg@thalheim.io>
|
||||
|
||||
* GitHub #28: Src/builtin.c: Add missing math.h include for
|
||||
builtins
|
||||
|
||||
2018-09-10 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* 43426: Test/W02jobs.ztst: disable tests involving suspending
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
#include "zsh.mdh"
|
||||
#include "builtin.pro"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
/* Builtins in the main executable */
|
||||
|
||||
static struct builtin builtins[] =
|
||||
|
|
Loading…
Reference in a new issue