diff options
author | Anatol Belski <ab@php.net> | 2015-05-15 00:00:06 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-05-15 00:15:01 +0200 |
commit | 55f6687237b1d7934554a51bd596d79577351aae (patch) | |
tree | 985faacf2b4c7d39f2bc8abd97c3cfe63ad2469c /win32/signal.h | |
parent | 196b9517281aebd972e7f287433aa97af2e06087 (diff) | |
download | php-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.h | 5 |
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 */ |