Problem: Still a few K&R function declarations.
Solution: Use ANSI function declarations (Hirohito Higashi)
}
char_u *
-typval_tostring(arg)
- typval_T *arg;
+typval_tostring(typval_T *arg)
{
char_u *tofree;
char_u numbuf[NUMBUFLEN];
* "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;
* "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;
* Return FAIL when out of memory.
*/
int
-list_append_list(list1, list2)
- list_T *list1;
- list_T *list2;
+list_append_list(list_T *list1, list_T *list2)
{
listitem_T *li = listitem_alloc();
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 210,
/**/
209,
/**/