1
0
forked from aniani/vim

patch 8.0.0844: wrong function prototype because of missing static

Problem:    Wrong function prototype because of missing static.
Solution:   Add "static".
This commit is contained in:
Bram Moolenaar
2017-08-02 23:18:25 +02:00
parent 66cd19fef1
commit e0ab979fa7
3 changed files with 5 additions and 4 deletions

View File

@@ -111,6 +111,7 @@ typedef int HICON;
typedef int HINSTANCE;
typedef int HWND;
typedef int INPUT_RECORD;
typedef int INT;
typedef int KEY_EVENT_RECORD;
typedef int LOGFONT;
typedef int LPBOOL;
@@ -657,13 +658,13 @@ null_libintl_textdomain(const char *domainname UNUSED)
return NULL;
}
int
static int
null_libintl_putenv(const char *envstring UNUSED)
{
return 0;
}
int
static int
null_libintl_wputenv(const wchar_t *envstring UNUSED)
{
return 0;