summaryrefslogtreecommitdiff
path: root/src/os_win32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-02 22:07:12 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-02 22:07:12 +0200
commitb6843a007da9c06bd8f9491cc12e5e0afd858f33 (patch)
tree2199b430eb6cc5d9800ea9e82a43c9d527d0d148 /src/os_win32.c
parentfae428354213b54626ff9e29faa5fd86161da942 (diff)
downloadvim-git-b6843a007da9c06bd8f9491cc12e5e0afd858f33.tar.gz
patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrongv8.0.0840
Problem: MS-Windows: fopen() and open() prototypes do not match the ones in the system header file. Can't build without FEAT_MBYTE. Solution: Add "const". Move macro to after including protoo.h.
Diffstat (limited to 'src/os_win32.c')
-rw-r--r--src/os_win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_win32.c b/src/os_win32.c
index 8a38bcc56..4921b50f3 100644
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -6503,7 +6503,7 @@ getout:
* Version of open() that may use UTF-16 file name.
*/
int
-mch_open(char *name, int flags, int mode)
+mch_open(const char *name, int flags, int mode)
{
/* _wopen() does not work with Borland C 5.5: creates a read-only file. */
# ifndef __BORLANDC__
@@ -6536,7 +6536,7 @@ mch_open(char *name, int flags, int mode)
* Version of fopen() that may use UTF-16 file name.
*/
FILE *
-mch_fopen(char *name, char *mode)
+mch_fopen(const char *name, const char *mode)
{
WCHAR *wn, *wm;
FILE *f = NULL;