mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
fix include with vc14
This commit is contained in:
parent
6a1bf93ad9
commit
4923d23469
1 changed files with 4 additions and 0 deletions
|
@ -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>
|
||||
** the original "#include <signal.h>" produces an infinite reinclusion
|
||||
|
@ -11,6 +14,7 @@
|
|||
** include file is located.
|
||||
*/
|
||||
#include <../include/signal.h>
|
||||
#endif
|
||||
#define SIGALRM 13
|
||||
#define SIGVTALRM 26 /* virtual time alarm */
|
||||
#define SIGPROF 27 /* profiling time alarm */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue