summaryrefslogtreecommitdiff
path: root/ext/standard/php_rand.h
diff options
context:
space:
mode:
authorJeroen van Wolffelaar <jeroen@php.net>2001-09-03 12:01:50 +0000
committerJeroen van Wolffelaar <jeroen@php.net>2001-09-03 12:01:50 +0000
commitdc8386e30dfb22adcef9e289586091e0ecb03df2 (patch)
tree1d9d3be951063441f85730e1a157423defcbcddd /ext/standard/php_rand.h
parentefb83df9f9fed6be71f8e849ed702df0fd842fbd (diff)
downloadphp-git-dc8386e30dfb22adcef9e289586091e0ecb03df2.tar.gz
Removed outdated comment until I've got a better one
Diffstat (limited to 'ext/standard/php_rand.h')
-rw-r--r--ext/standard/php_rand.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/standard/php_rand.h b/ext/standard/php_rand.h
index 21c6f63ec0..ba5c064c10 100644
--- a/ext/standard/php_rand.h
+++ b/ext/standard/php_rand.h
@@ -34,25 +34,6 @@
* give the user the possibility to control all randomness by means of
* srand()/php.ini in a portable and consistent way.
*
- * rand.c: (the only rand*.c file with PHP_API and PHP_FUNCTION functions)
- *
- * - PHP_FUNCTION([mt_]srand)
- * +-> void php_srand(void)
- * +-> void php_srand2(long seed, int alg)
- * +-> (rand_sys.c) long php_rand_sys()
- * +-> (rand_mt.c ) long php_rand_mt()
- *
- * - PHP_FUNCTION([mt_]rand)
- * +-> long php_rand()
- * +-> (rand_sys.c) long php_rand_sys()
- * +-> (rand_mt.c ) long php_rand_mt()
- * +-> long php_rand_range(long min, long max)
- * +-> calls php_rand()
- *
- * - PHP_FUNCTION([mt_]getrandmax)
- * +-> PHPAPI long php_randmax(void)
- * +-> (rand_sys.c) long php_randmax_sys()
- * +-> (rand_mt.c ) long php_randmax_mt()
*
* --Jeroen
*/