BSD 4_3_Reno release
[unix-history] / usr / src / lib / libF77 / d_tan.c
CommitLineData
eeddfefd 1/*
fdf06e99
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
95f51977 6 * @(#)d_tan.c 5.1 6/7/85
eeddfefd
DW
7 */
8
9double d_tan(x)
10double *x;
11{
12double tan();
13return( tan(*x) );
14}