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

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

float sinhf(float x)
{
  return _sinhf(x);
}