diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2021-06-02 17:07:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-06-02 17:07:18 +0200 |
commit | 01c798c31a94a50ad0c4a022fc21c1a31553be21 (patch) | |
tree | cc720adf347b3afa81846b110dd8f595eed5177c /src/proto.h | |
parent | a83d06026d0e0dad873de296bff97707ad2faff3 (diff) | |
download | vim-git-01c798c31a94a50ad0c4a022fc21c1a31553be21.tar.gz |
patch 8.2.2928: the evalfunc.c file is too bigv8.2.2928
Problem: The evalfunc.c file is too big.
Solution: Move float related functionality to a separate file. (Yegappan
Lakshmanan, closes #8287)
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h index 686a3d63a..78f814ca5 100644 --- a/src/proto.h +++ b/src/proto.h @@ -90,6 +90,7 @@ extern int _stricoll(char *a, char *b); # include "fileio.pro" # include "filepath.pro" # include "findfile.pro" +# include "float.pro" # include "fold.pro" # include "getchar.pro" # include "gui_xim.pro" |