[PHP-DEV] CVS update: php3/functions From: rasmus (php-dev <email protected>)
Date: 12/21/98

Date: Monday December 21, 1998 @ 18:33
Author: rasmus

Update of /repository/php3/functions
In directory asf:/home/rasmus/php3/functions

Modified Files:
        rand.c
Log Message:
Some cleanups - guys, please no new things until we can get 3.0.6
finished up.

Index: php3/functions/rand.c
diff -c php3/functions/rand.c:1.29 php3/functions/rand.c:1.30
*** php3/functions/rand.c:1.29 Mon Dec 21 15:57:31 1998
--- php3/functions/rand.c Mon Dec 21 18:33:21 1998
***************
*** 30,36 ****
     | Based on code from: Shawn Cokus <Cokus <email protected>> |
     +----------------------------------------------------------------------+
   */
! /* $Id: rand.c,v 1.29 1998/12/21 20:57:31 kk Exp $ */
  
  #include <stdlib.h>
  
--- 30,36 ----
     | Based on code from: Shawn Cokus <Cokus <email protected>> |
     +----------------------------------------------------------------------+
   */
! /* $Id: rand.c,v 1.30 1998/12/21 23:33:21 rasmus Exp $ */
  
  #include <stdlib.h>
  
***************
*** 39,45 ****
  #include "phpmath.h"
  
  #ifndef RAND_MAX
! #define RAND_MAX 2^^15
  
  #endif
  
--- 39,45 ----
  #include "phpmath.h"
  
  #ifndef RAND_MAX
! #define RAND_MAX (1<<15)
  
  #endif
  

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>