8 lines
91 B
C
Raw Normal View History

#include <math.h>
#include "headers/tanhf.h"
float tanhf(float x)
{
return _tanhf(x);
}