]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid MinGW64 compilation warning in w32.c
authorEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2017 08:51:24 +0000 (11:51 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2017 08:51:24 +0000 (11:51 +0300)
* src/w32.c (sys_strerror): Provide a prototype for MinGW64.

src/w32.c

index f583d5e76c2b3e2916bb96033080afc0d2bfa6ad..eb531aa60c3bb9eab6283743b8470f5fcae4811f 100644 (file)
--- a/src/w32.c
+++ b/src/w32.c
@@ -82,6 +82,10 @@ int sys_dup2 (int, int);
 int sys_read (int, char *, unsigned int);
 int sys_write (int, const void *, unsigned int);
 struct tm *sys_localtime (const time_t *);
+/* MinGW64 system headers include string.h too early, causing the
+   compiler to emit a warning about sys_strerror having no
+   prototype.  */
+char *sys_strerror (int);
 
 #ifdef HAVE_MODULES
 extern void dynlib_reset_last_error (void);