home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
sharew
/
f_2_c
/
libf77
/
d_tanh.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
|
97 b
|
9 lines
#include "f2c.h"
double d_tanh(x)
doublereal *x;
{
double tanh();
return( tanh(*x) );
}