We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da705a1 commit 85f6c30Copy full SHA for 85f6c30
ext/standard/php_random_class.h
@@ -26,9 +26,9 @@ extern PHPAPI zend_class_entry *php_ce_random;
26
typedef struct _php_random_class_algo {
27
const char* ident;
28
const unsigned char bytes;
29
- const size_t state_size;
+ const size_t state_size;
30
uint64_t (*next)(void *state);
31
- void* (*init)(void);
+ void* (*init)();
32
void (*seed)(void *state, const zend_long seed);
33
int (*serialize)(void *state, zval *return_value);
34
int (*unserialize)(void *state, HashTable *data);
0 commit comments