mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
2027b949ea
the cause of the recursive inclusion is fixed, it's not compiler version dependent
11 lines
225 B
C
11 lines
225 B
C
#ifndef PHP_WIN32_SIGNAL_H
|
|
#define PHP_WIN32_SIGNAL_H
|
|
|
|
#include <signal.h>
|
|
|
|
#define SIGALRM 13
|
|
#define SIGVTALRM 26 /* virtual time alarm */
|
|
#define SIGPROF 27 /* profiling time alarm */
|
|
|
|
#endif /* PHP_WIN32_SIGNAL_H */
|