0
0
mirror of https://github.com/vim/vim.git synced 2025-10-13 06:54:15 -04:00

patch 8.1.0210: still a few K&R function declarations

Problem:    Still a few K&R function declarations.
Solution:   Use ANSI function declarations (Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2018-07-25 19:49:45 +02:00
parent b6c8cd8dc3
commit 6f8d2ac6f1
4 changed files with 6 additions and 11 deletions

View File

@@ -2857,9 +2857,7 @@ f_delete(typval_T *argvars, typval_T *rettv)
* "deletebufline()" function
*/
static void
f_deletebufline(argvars, rettv)
typval_T *argvars;
typval_T *rettv;
f_deletebufline(typval_T *argvars, typval_T *rettv)
{
buf_T *buf;
linenr_T first, last;
@@ -10502,9 +10500,7 @@ f_serverlist(typval_T *argvars UNUSED, typval_T *rettv)
* "setbufline()" function
*/
static void
f_setbufline(argvars, rettv)
typval_T *argvars;
typval_T *rettv;
f_setbufline(typval_T *argvars, typval_T *rettv)
{
linenr_T lnum;
buf_T *buf;