diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-01-06 03:55:57 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-01-06 03:55:57 +0000 |
commit | 10889a30843954c81653da41f5ba945531519ebd (patch) | |
tree | fcd5091fe55598d8f1f309b71ba1c22b7e33a7ef /ext | |
parent | 6b27ed4d8d3a4433922d852b6952cdb6f06d5281 (diff) | |
download | php-git-10889a30843954c81653da41f5ba945531519ebd.tar.gz |
Proto fixes.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/rand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/rand.c b/ext/standard/rand.c index 78737f4caa..54333fdd16 100644 --- a/ext/standard/rand.c +++ b/ext/standard/rand.c @@ -311,7 +311,7 @@ PHP_FUNCTION(mt_srand) * -RL */ -/* {{{ proto int rand([int min, int max]) +/* {{{ proto int rand(int min, int max) Returns a random number */ PHP_FUNCTION(rand) { @@ -336,7 +336,7 @@ PHP_FUNCTION(rand) } /* }}} */ -/* {{{ proto int mt_rand([int min, int max]) +/* {{{ proto int mt_rand(int min, int max) Returns a random number from Mersenne Twister */ PHP_FUNCTION(mt_rand) { |