iliaa           Mon Jan  5 22:55:58 2004 EDT

  Modified files:              
    /php-src/ext/standard       rand.c 
  Log:
  Proto fixes.
  
  
Index: php-src/ext/standard/rand.c
diff -u php-src/ext/standard/rand.c:1.64 php-src/ext/standard/rand.c:1.65
--- php-src/ext/standard/rand.c:1.64    Sun Aug 10 20:42:29 2003
+++ php-src/ext/standard/rand.c Mon Jan  5 22:55:57 2004
@@ -20,7 +20,7 @@
    | Based on code from: Shawn Cokus <[EMAIL PROTECTED]>          |
    +----------------------------------------------------------------------+
  */
-/* $Id: rand.c,v 1.64 2003/08/11 00:42:29 sniper Exp $ */
+/* $Id: rand.c,v 1.65 2004/01/06 03:55:57 iliaa Exp $ */
 
 #include <stdlib.h>
 
@@ -311,7 +311,7 @@
  * -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 @@
 }
 /* }}} */
 
-/* {{{ 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)
 {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to