Files
Arquivotheca.SunOS-4.1.4/usr.lib/libm/libF77/d_tan.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

13 lines
168 B
C

#ifndef lint
static char sccsid[] = "@(#)d_tan.c 1.1 94/10/31 SMI"; /* from UCB 1.1" */
#endif
/*
*/
double d_tan(x)
double *x;
{
double tan();
return( tan(*x) );
}