blob: a14dee96ca888e7d9109d1c2e1fdd09b91feb205 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $Id: random.c,v 1.7 1999/07/15 15:19:33 momjian Exp $ */
#include <stdlib.h>
#include <math.h> /* for pow() prototype */
#include <errno.h>
long
random()
{
return lrand48();
}
|