home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
sharew
/
f_2_c
/
libf77
/
d_tan.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1991-06-10
|
94 b
|
9 lines
#include "f2c.h"
double d_tan(x)
doublereal *x;
{
double tan();
return( tan(*x) );
}