fix include with vc14

This commit is contained in:
Anatol Belski 2015-04-13 10:51:24 +02:00
parent 6a1bf93ad9
commit 4923d23469

View file

@ -1,3 +1,6 @@
#if _MSC_VER >= 1900
#include <signal.h>
#else
/* /*
** Change here: if you plan to use your own version of <signal.h> ** Change here: if you plan to use your own version of <signal.h>
** the original "#include <signal.h>" produces an infinite reinclusion ** the original "#include <signal.h>" produces an infinite reinclusion
@ -11,6 +14,7 @@
** include file is located. ** include file is located.
*/ */
#include <../include/signal.h> #include <../include/signal.h>
#endif
#define SIGALRM 13 #define SIGALRM 13
#define SIGVTALRM 26 /* virtual time alarm */ #define SIGVTALRM 26 /* virtual time alarm */
#define SIGPROF 27 /* profiling time alarm */ #define SIGPROF 27 /* profiling time alarm */