Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sf_tanh.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65c3f9bcff6ce31f9f57bbf647d982b51f5649d8 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/tanhf.h"

float tanhf(float x)
{
  return _tanhf(x);
}