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

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