From: Anatol Belski Date: Thu, 14 May 2015 22:00:06 +0000 (+0200) Subject: added the inclusion guard X-Git-Tag: PRE_PHP7_NSAPI_REMOVAL~42^2~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55f6687237b1d7934554a51bd596d79577351aae;p=php added the inclusion guard the vc check can be likely removed, to be checked --- diff --git a/win32/signal.h b/win32/signal.h index a131e6ef99..8d4f411d21 100644 --- a/win32/signal.h +++ b/win32/signal.h @@ -1,3 +1,6 @@ +#ifndef PHP_WIN32_SIGNAL_H +#define PHP_WIN32_SIGNAL_H + #if _MSC_VER >= 1900 #include #else @@ -18,3 +21,5 @@ #define SIGALRM 13 #define SIGVTALRM 26 /* virtual time alarm */ #define SIGPROF 27 /* profiling time alarm */ + +#endif /* PHP_WIN32_SIGNAL_H */