comparison src/os_win32.c @ 11929:3457728d1a58 v8.0.0844

patch 8.0.0844: wrong function prototype because of missing static commit https://github.com/vim/vim/commit/e0ab979fa7404592eaf4180e6d7d3af4c7787e8f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 2 23:18:25 2017 +0200 patch 8.0.0844: wrong function prototype because of missing static Problem: Wrong function prototype because of missing static. Solution: Add "static".
author Christian Brabandt <cb@256bit.org>
date Wed, 02 Aug 2017 23:30:04 +0200
parents bafbdbc64bbe
children 74e45c11b754
comparison
equal deleted inserted replaced
11928:4c1d0c774d51 11929:3457728d1a58
109 typedef int HFONT; 109 typedef int HFONT;
110 typedef int HICON; 110 typedef int HICON;
111 typedef int HINSTANCE; 111 typedef int HINSTANCE;
112 typedef int HWND; 112 typedef int HWND;
113 typedef int INPUT_RECORD; 113 typedef int INPUT_RECORD;
114 typedef int INT;
114 typedef int KEY_EVENT_RECORD; 115 typedef int KEY_EVENT_RECORD;
115 typedef int LOGFONT; 116 typedef int LOGFONT;
116 typedef int LPBOOL; 117 typedef int LPBOOL;
117 typedef int LPCTSTR; 118 typedef int LPCTSTR;
118 typedef int LPDWORD; 119 typedef int LPDWORD;
655 null_libintl_textdomain(const char *domainname UNUSED) 656 null_libintl_textdomain(const char *domainname UNUSED)
656 { 657 {
657 return NULL; 658 return NULL;
658 } 659 }
659 660
660 int 661 static int
661 null_libintl_putenv(const char *envstring UNUSED) 662 null_libintl_putenv(const char *envstring UNUSED)
662 { 663 {
663 return 0; 664 return 0;
664 } 665 }
665 666
666 int 667 static int
667 null_libintl_wputenv(const wchar_t *envstring UNUSED) 668 null_libintl_wputenv(const wchar_t *envstring UNUSED)
668 { 669 {
669 return 0; 670 return 0;
670 } 671 }
671 672