mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
fix php_init_crypt_r/php_shutdown_crypt_r signatures warning.
This commit is contained in:
@@ -47,14 +47,14 @@
|
||||
MUTEX_T php_crypt_extended_init_lock;
|
||||
#endif
|
||||
|
||||
void php_init_crypt_r()
|
||||
void php_init_crypt_r(void)
|
||||
{
|
||||
#ifdef ZTS
|
||||
php_crypt_extended_init_lock = tsrm_mutex_alloc();
|
||||
#endif
|
||||
}
|
||||
|
||||
void php_shutdown_crypt_r()
|
||||
void php_shutdown_crypt_r(void)
|
||||
{
|
||||
#ifdef ZTS
|
||||
tsrm_mutex_free(php_crypt_extended_init_lock);
|
||||
|
||||
@@ -20,8 +20,8 @@
|
||||
BEGIN_EXTERN_C()
|
||||
#include "crypt_freesec.h"
|
||||
|
||||
void php_init_crypt_r();
|
||||
void php_shutdown_crypt_r();
|
||||
void php_init_crypt_r(void);
|
||||
void php_shutdown_crypt_r(void);
|
||||
|
||||
extern void _crypt_extended_init_r(void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user