/* rand.h - Header file for rand.c */

/* The following 3 declarations are for use of the random-number
   generator rand and the associated functions randst and randgt for
   seed management.  This file (named rand.h) should be included in any
   program using these functions by executing
       #include "rand.h"
   before referencing the functions.
*/

float rand(int stream);
void randst(long zset, int stream);
long randgt(int stream);

