aboutsummaryrefslogtreecommitdiff
path: root/math/ieee/uni.c
blob: 8e76c099c5e60dc653b9501d3fe2e5c35c02de74 (plain) (blame)
1
2
3
4
5
6
7
8
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
 */

float uni_(dummy)
float *dummy;
{
	return(rand()/ 2147483648.0);	/* return a real [0.0, 1.0) */
}