Skip to content

Commit 69f0882

Browse files
committed
Fix missing include in win32/globals.c
This previously errored with: win32\globals.c(66): error C2220: the following warning is treated as an error win32\globals.c(66): warning C4013: 'php_win32_signal_ctrl_handler_request_shutdown' undefined; assuming extern returning int This only errors on master because of 2473f57 (thanks to Niels for that info!). Closes GH-18508
1 parent dcf9d8f commit 69f0882

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

win32/globals.c

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "php.h"
1818
#include "php_win32_globals.h"
1919
#include "syslog.h"
20+
#include "signal.h"
2021

2122
#ifdef ZTS
2223
PHPAPI int php_win32_core_globals_id;

0 commit comments

Comments
 (0)