/* $Id: srandom.c,v 1.7 1999/07/15 15:19:34 momjian Exp $ */ #include #include /* for pow() prototype */ #include void srandom(unsigned int seed) { srand48((long int) seed); }