blob: 5f61088be69fb7835fdd0708766245db5e57f7c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $Id: srandom.c,v 1.10 2001/08/24 14:07:49 petere Exp $ */
#include "c.h"
#include <stdlib.h>
#include <math.h>
#include <errno.h>
void
srandom(unsigned int seed)
{
srand48((long int) seed);
}
|