Skip to content

Commit

Permalink
Debugging Automated Testing - 8.4 Failed Build
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenikkusu committed Feb 6, 2025
1 parent 46b519c commit 7b2dceb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build/config/phalcon_c_header.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
#include <ext/standard/info.h>
#include <ext/standard/file.h>
#include <ext/standard/php_filestat.h>
#include <ext/standard/php_rand.h>
#include <ext/standard/php_lcg.h>
#include <ext/standard/php_math.h>
#include <ext/standard/php_array.h>
#include <ext/standard/php_var.h>
Expand All @@ -50,6 +48,13 @@
#include <ext/standard/url.h>
#include <ext/standard/crc32.h>
#if PHP_VERSION_ID < 80400
#include <ext/standard/php_rand.h>
#include <ext/standard/php_lcg.h>
#else
#include <ext/random/php_random.h>
#endif
#include <ext/spl/spl_heap.h>
#include <ext/spl/spl_exceptions.h>
#include <ext/spl/spl_directory.h>
Expand Down

0 comments on commit 7b2dceb

Please sign in to comment.