diff src/os_win32.c @ 11921:bafbdbc64bbe v8.0.0840

patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong commit https://github.com/vim/vim/commit/b6843a007da9c06bd8f9491cc12e5e0afd858f33 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 2 22:07:12 2017 +0200 patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong 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.
author Christian Brabandt <cb@256bit.org>
date Wed, 02 Aug 2017 22:15:04 +0200
parents 1922710ee8fa
children 3457728d1a58
line wrap: on
line diff
--- 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;