/* FILE : urand.h
*  
*                       uniform random number generator
*
*       Reference: "Computer Methods for Mathematical Computations"
*                   by Forsythe, Malcolm and Moler
*
*/

void    init_urand();
double  urand(/* &y */);
