blob: 950b9106eca2f39966725cb454f0661be3d8c2b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $Id: random.c,v 1.9 1999/07/16 23:09:45 tgl Exp $ */
#include <stdlib.h>
#include <math.h>
#include <errno.h>
#include "config.h"
long
random()
{
return lrand48();
}
|