summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/wf_cosh.c
blob: 6a0f15cb767d6530d897027e75cd4e456ec42905 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/coshf.h"

float coshf(float x)
{
  return _coshf(x);
}