mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 23:28:37 -04: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) );
|
||
|
|
}
|