1
0
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:
Sterling Hughes
2001-09-06 07:33:45 +00:00
parent 4bfa51ad89
commit 33fc6e2d5f

View File

@@ -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 */