1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3'

* PHP-8.3:
  zend_max_execution_timer: fix gcc compatibility (#15447)
This commit is contained in:
Christoph M. Becker
2024-08-20 16:31:55 +02:00

View File

@@ -31,6 +31,10 @@
#include "zend_globals.h"
#include "zend_portability.h"
#include "zend.h"
#include "zend_globals.h"
#include "zend_portability.h"
#if __has_feature(memory_sanitizer)
# include <sanitizer/msan_interface.h>
#endif