8 lines
91 B
C
8 lines
91 B
C
|
#include <math.h>
|
||
|
#include "headers/tanhf.h"
|
||
|
|
||
|
float tanhf(float x)
|
||
|
{
|
||
|
return _tanhf(x);
|
||
|
}
|