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

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

float acoshf(float x)
{
  return _acoshf(x);
}