commit | 8e82c057ffb86cec3210ad8a22ad3f21d52e0953 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Aug 21 19:47:48 2018 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Aug 21 19:47:48 2018 +0200 |
tree | 096ec9398f1c11cfbbc13b4e3531c9723d608be6 | |
parent | 8c5e0093c9badced73e382915fb024a5c3ea463b [diff] [blame] |
patch 8.1.0312: wrong type for flags used in signal handlers Problem: Wrong type for flags used in signal handlers. Solution: Use sig_atomic_t. (Dominique Pelle, closes #3356)
diff --git a/src/os_win32.h b/src/os_win32.h index 5017f53..4b1fc39 100644 --- a/src/os_win32.h +++ b/src/os_win32.h
@@ -89,6 +89,7 @@ #define FNAME_ILLEGAL "\"*?><|" /* illegal characters in a file name */ +#include <signal.h> #include <stdlib.h> #include <time.h> #include <sys/types.h>