We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e1cef4 commit 257f108Copy full SHA for 257f108
ext/standard/php_crypt_r.c
@@ -47,14 +47,14 @@
47
MUTEX_T php_crypt_extended_init_lock;
48
#endif
49
50
-void php_init_crypt_r()
+void php_init_crypt_r(void)
51
{
52
#ifdef ZTS
53
php_crypt_extended_init_lock = tsrm_mutex_alloc();
54
55
}
56
57
-void php_shutdown_crypt_r()
+void php_shutdown_crypt_r(void)
58
59
60
tsrm_mutex_free(php_crypt_extended_init_lock);
ext/standard/php_crypt_r.h
@@ -20,8 +20,8 @@
20
BEGIN_EXTERN_C()
21
#include "crypt_freesec.h"
22
23
-void php_init_crypt_r();
24
-void php_shutdown_crypt_r();
+void php_init_crypt_r(void);
+void php_shutdown_crypt_r(void);
25
26
extern void _crypt_extended_init_r(void);
27
0 commit comments