summaryrefslogtreecommitdiff
path: root/win32/signal.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-05-15 00:00:06 +0200
committerAnatol Belski <ab@php.net>2015-05-15 00:15:01 +0200
commit55f6687237b1d7934554a51bd596d79577351aae (patch)
tree985faacf2b4c7d39f2bc8abd97c3cfe63ad2469c /win32/signal.h
parent196b9517281aebd972e7f287433aa97af2e06087 (diff)
downloadphp-git-55f6687237b1d7934554a51bd596d79577351aae.tar.gz
added the inclusion guard
the vc check can be likely removed, to be checked
Diffstat (limited to 'win32/signal.h')
-rw-r--r--win32/signal.h5
1 files changed, 5 insertions, 0 deletions
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 <signal.h>
#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 */