comparison src/eval.c @ 14391:46f14852a919 v8.1.0210

patch 8.1.0210: still a few K&R function declarations commit https://github.com/vim/vim/commit/6f8d2ac6f1f8a4b971a4c9b27f9250288198f3bb Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 25 19:49:45 2018 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Wed, 25 Jul 2018 20:00:06 +0200
parents f8280e1bfc84
children c62601adad69
comparison
equal deleted inserted replaced
14390:0bd086e665f4 14391:46f14852a919
9385 9385
9386 return OK; 9386 return OK;
9387 } 9387 }
9388 9388
9389 char_u * 9389 char_u *
9390 typval_tostring(arg) 9390 typval_tostring(typval_T *arg)
9391 typval_T *arg;
9392 { 9391 {
9393 char_u *tofree; 9392 char_u *tofree;
9394 char_u numbuf[NUMBUFLEN]; 9393 char_u numbuf[NUMBUFLEN];
9395 char_u *ret = NULL; 9394 char_u *ret = NULL;
9396 9395