diff options
Diffstat (limited to 'ext/standard/php_rand.h')
-rw-r--r-- | ext/standard/php_rand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_rand.h b/ext/standard/php_rand.h index 44a40a7c3b..39ba00eb56 100644 --- a/ext/standard/php_rand.h +++ b/ext/standard/php_rand.h @@ -55,7 +55,7 @@ PHPAPI void php_srand(zend_long seed); PHPAPI zend_long php_rand(void); -PHPAPI void php_mt_srand(php_uint32 seed); -PHPAPI php_uint32 php_mt_rand(void); +PHPAPI void php_mt_srand(uint32_t seed); +PHPAPI uint32_t php_mt_rand(void); #endif /* PHP_RAND_H */ |