1 2 3 4 5 6 7 8 9 10 11
/* $Id: random.c,v 1.8 1999/07/16 03:13:06 momjian Exp $ */ #include <stdlib.h> #include <math.h> #include <errno.h> long random() { return lrand48(); }