blob: f7ff333f2e1305831134c9c7055e30c80768f20b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $Id: srandom.c,v 1.8 1999/07/16 03:13:08 momjian Exp $ */
#include <stdlib.h>
#include <math.h>
#include <errno.h>
void
srandom(unsigned int seed)
{
srand48((long int) seed);
}
|