1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00

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
This commit is contained in:
Ilija Tovilo
2025-05-06 14:34:07 +02:00
parent dcf9d8f812
commit 69f0882d3b
+1
View File
@@ -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;