sas             Mon Mar 31 00:39:45 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/ext/standard  lcg.c 
  Log:
  MFH TS issue, noticed by Sebastian Bergmann
  
Index: php4/ext/standard/lcg.c
diff -u php4/ext/standard/lcg.c:1.33.2.2 php4/ext/standard/lcg.c:1.33.2.3
--- php4/ext/standard/lcg.c:1.33.2.2    Sun Mar 30 22:24:45 2003
+++ php4/ext/standard/lcg.c     Mon Mar 31 00:39:45 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: lcg.c,v 1.33.2.2 2003/03/31 03:24:45 sas Exp $ */
+/* $Id: lcg.c,v 1.33.2.3 2003/03/31 05:39:45 sas Exp $ */
 
 #include "php.h"
 #include "php_lcg.h"
@@ -56,6 +56,8 @@
  */
 
 #define MODMULT(a, b, c, m, s) q = s/a;s=b*(s-a*q)-c*q;if(s<0)s+=m
+
+static void lcg_seed(TSRMLS_D);
 
 PHPAPI double php_combined_lcg(TSRMLS_D)
 {



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

Reply via email to