mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 7.4.1213
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
This commit is contained in:
@@ -481,7 +481,7 @@ char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
|
||||
= null_libintl_bind_textdomain_codeset;
|
||||
|
||||
int
|
||||
dyn_libintl_init()
|
||||
dyn_libintl_init(void)
|
||||
{
|
||||
int i;
|
||||
static struct
|
||||
@@ -543,7 +543,7 @@ dyn_libintl_init()
|
||||
}
|
||||
|
||||
void
|
||||
dyn_libintl_end()
|
||||
dyn_libintl_end(void)
|
||||
{
|
||||
if (hLibintlDLL)
|
||||
FreeLibrary(hLibintlDLL);
|
||||
|
Reference in New Issue
Block a user