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)
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 7d0f33a..97242f6 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -2857,9 +2857,7 @@
* "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 @@
* "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;