mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
14 lines
166 B
C
14 lines
166 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
double tanh();
|
||
|
double r_tanh(x) real *x;
|
||
|
#else
|
||
|
#undef abs
|
||
|
#include "math.h"
|
||
|
double r_tanh(real *x)
|
||
|
#endif
|
||
|
{
|
||
|
return( tanh(*x) );
|
||
|
}
|