Index: trunk/psLib/src/math/psRandom.h
===================================================================
--- trunk/psLib/src/math/psRandom.h	(revision 4293)
+++ trunk/psLib/src/math/psRandom.h	(revision 4330)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-17 00:11:05 $
+*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-21 03:01:37 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -54,5 +54,5 @@
 psRandom *psRandomAlloc(
     psRandomType type,                 ///< The type of RNG
-    psU64 seed                         ///< Known value with which to seed the RNG
+    unsigned long seed                 ///< Known value with which to seed the RNG
 );
 
@@ -63,5 +63,5 @@
 void psRandomReset(
     psRandom *rand,                    ///< Existing psRandom struct to reset
-    psU64 seed                         ///< Known value with which to seed the RNG
+    unsigned long seed                 ///< Known value with which to seed the RNG
 );
 
@@ -69,7 +69,7 @@
  *  Uses gsl_rng_uniform.
  *  
- *  @return psF64:     Random number.
+ *  @return double:     Random number.
  */
-psF64 psRandomUniform(
+double psRandomUniform(
     const psRandom *r                  ///< psRandom struct for RNG
 );
@@ -78,7 +78,7 @@
  *  Uses gsl_ran_gaussian.
  *  
- *  @return psF64:     Random number.
+ *  @return double:     Random number.
  */
-psF64 psRandomGaussian(
+double psRandomGaussian(
     const psRandom *r                  ///< psRandom struct for RNG
 );
@@ -87,9 +87,9 @@
  *  Uses gsl_ran_poisson.
  *  
- *  @return psF64:     Random number.
+ *  @return double:     Random number.
  */
-psF64 psRandomPoisson(
+double psRandomPoisson(
     const psRandom *r,                 ///< psRandom struct for RNG
-    psF64 mean                         ///< Mean value
+    double mean                         ///< Mean value
 );
 
