Remove php_win32_init_gettimeofday declaration (#15451)

* Remove php_win32_init_gettimeofday declaration

Follow-up of GH-15400 (25afbdb09e).

* Remove unused header include

* Include php.h before win32/ioutil.h
This commit is contained in:
Peter Kokot 2024-08-17 13:58:40 +02:00 committed by GitHub
parent 8db3d36f2f
commit b86dfd76a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 8 deletions

View File

@ -16,9 +16,8 @@
#include <config.w32.h>
#include <win32/time.h>
#include <win32/ioutil.h>
#include <php.h>
#include <win32/ioutil.h>
#ifdef HAVE_LIBXML
#include <libxml/threads.h>

View File

@ -54,10 +54,4 @@ PHPAPI int nanosleep( const struct timespec * rqtp, struct timespec * rmtp );
PHPAPI int usleep(unsigned int useconds);
#ifdef PHP_EXPORTS
/* This symbols are needed only for the DllMain, but should not be exported
or be available when used with PHP binaries. */
void php_win32_init_gettimeofday(void);
#endif
#endif