mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 08:03:41 +08:00
9 lines
100 B
C
9 lines
100 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double d_tanh(doublereal *x)
|
||
|
{
|
||
|
return( tanh(*x) );
|
||
|
}
|