From 69f0882d3be713ede475addf11c79aa7542c9de2 Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Tue, 6 May 2025 14:34:07 +0200 Subject: [PATCH] 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 2473f57ba (thanks to Niels for that info!). Closes GH-18508 --- win32/globals.c | 1 + 1 file changed, 1 insertion(+) diff --git a/win32/globals.c b/win32/globals.c index 3f352490573..13760cb1cb5 100644 --- a/win32/globals.c +++ b/win32/globals.c @@ -17,6 +17,7 @@ #include "php.h" #include "php_win32_globals.h" #include "syslog.h" +#include "signal.h" #ifdef ZTS PHPAPI int php_win32_core_globals_id;