0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 7.4.1210

Problem:    Using old style function declarations.
Solution:   Change to new style function declarations. (script by Hirohito
            Higashi)
This commit is contained in:
Bram Moolenaar
2016-01-30 18:51:09 +01:00
parent 02fdaeaa69
commit 52ea13da0f
9 changed files with 683 additions and 1111 deletions

View File

@@ -31,7 +31,7 @@ static void test_mf_hash(void);
* Test mf_hash_*() functions.
*/
static void
test_mf_hash()
test_mf_hash(void)
{
mf_hashtab_T ht;
mf_hashitem_T *item;
@@ -138,7 +138,7 @@ test_mf_hash()
}
int
main()
main(void)
{
test_mf_hash();
return 0;