blob: e4ecbbb28ea96e5adb8d78a807a93cd60d0fbda7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $Id: srandom.c,v 1.3 1997/12/19 13:34:31 scrappy Exp $ */
#include <math.h> /* for pow() prototype */
#include <errno.h>
#include "rusagestub.h"
#include "port-protos.h"
void
srandom(unsigned int seed)
{
srand48((long int) seed);
}
|