blob: cf74ce5f86c6a475921c453fc6f37bcd4c83d819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $Id: srandom.c,v 1.1 2002/07/18 04:13:59 momjian Exp $ */
#include "c.h"
#include <stdlib.h>
#include <math.h>
#include <errno.h>
void
srandom(unsigned int seed)
{
srand48((long int) seed);
}
|