mirror of
https://github.com/php/php-src.git
synced 2026-04-11 10:03:18 +02:00
add missing )
This commit is contained in:
@@ -245,7 +245,7 @@ PHP_FUNCTION(mt_srand)
|
||||
* -RL
|
||||
*/
|
||||
#define RAND_RANGE(__n, __min, __max) \
|
||||
(__n) = (__min) + (long) ((double) ((__max) - (__min) + 1.0)) * ((__n) / (PHP_RAND_MAX + 1.0))
|
||||
(__n) = (__min) + (long) ((double) ((__max) - (__min) + 1.0) * ((__n) / (PHP_RAND_MAX + 1.0)))
|
||||
|
||||
/* {{{ proto int rand([int min, int max])
|
||||
Returns a random number */
|
||||
|
||||
Reference in New Issue
Block a user