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