diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-31 17:30:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-31 17:30:51 +0100 |
commit | d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb (patch) | |
tree | f33b2f999a51f5ecd5b42c01b0d837ab8e660b44 /src/ex_cmds2.c | |
parent | bbb3339dbfa2067fab616698739097df06aa5e6c (diff) | |
download | vim-git-d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb.tar.gz |
patch 7.4.1225v7.4.1225
Problem: Still a few old style function declarations.
Solution: Make them new style. (Hirohito Higashi)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 2651770a6..98b8c8fbb 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -3627,10 +3627,7 @@ fgets_cr(char *s, int n, FILE *stream) * At least CodeWarrior 9 needed this code. */ char * -fgets_cr(s, n, stream) - char *s; - int n; - FILE *stream; +fgets_cr(char *s, int n, FILE *stream) { int c = 0; int char_read = 0; |