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

tanhf.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7c56f05cdfd86a68b2c0f75c1186794df3aa962 (plain)
1
2
3
#include <math.h>
float tanhf (float x)
  {return (float) tanh (x);}