12 lines
171 B
C
12 lines
171 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)d_nint.c 1.1 92/07/30 SMI"; /* from UCB 1.1" */
|
|
#endif
|
|
/*
|
|
*/
|
|
|
|
double d_nint(x)
|
|
double *x;
|
|
{
|
|
double anint(); return anint(*x);
|
|
}
|