Skip to content

Commit 17576a1

Browse files
committed
patch 7.4.1144
Problem: Can't build on several systems. Solution: Include float.h. (Christian Robinson, closes #570 #571)
1 parent f7edf40 commit 17576a1

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/ex_cmds.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
#include "vim.h"
1515
#include "version.h"
1616

17+
#ifdef FEAT_FLOAT
18+
# include <float.h>
19+
#endif
20+
1721
#ifdef FEAT_EX_EXTRA
1822
static int linelen __ARGS((int *has_tab));
1923
#endif

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
1144,
744746
/**/
745747
1143,
746748
/**/

0 commit comments

Comments
 (0)