Add copyright
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_tan.c
CommitLineData
eeddfefd
DW
1/*
2 * "@(#)d_tan.c 1.1"
3 */
4
5double d_tan(x)
6double *x;
7{
8double tan();
9return( tan(*x) );
10}