diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-02 23:18:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-02 23:18:25 +0200 |
commit | e0ab979fa7404592eaf4180e6d7d3af4c7787e8f (patch) | |
tree | a89637e4ec7beea7dce9db08080d547bd78ff4cf /src/proto/os_win32.pro | |
parent | 66cd19fef1c5e86d798db164cc29f8ec2793411d (diff) | |
download | vim-e0ab979fa7404592eaf4180e6d7d3af4c7787e8f.zip |
patch 8.0.0844: wrong function prototype because of missing static
Problem: Wrong function prototype because of missing static.
Solution: Add "static".
Diffstat (limited to 'src/proto/os_win32.pro')
-rw-r--r-- | src/proto/os_win32.pro | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro index 754df4f97..4e0629867 100644 --- a/src/proto/os_win32.pro +++ b/src/proto/os_win32.pro @@ -4,8 +4,6 @@ HINSTANCE find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname void *get_dll_import_func(HINSTANCE hInst, const char *funcname); int dyn_libintl_init(void); void dyn_libintl_end(void); -int null_libintl_putenv(const char *envstring); -int null_libintl_wputenv(const wchar_t *envstring); void PlatformId(void); void mch_setmouse(int on); void mch_update_cursor(void); |