summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/acosh/sacosha.c
blob: 450a8a3e56e1603b4dbd119b4a45bddded4931f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** sacosha.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Fri Jan  5 10:25:57 2007 jofret
** Last update Mon Oct 22 09:59:20 2007 bruno
**
** Copyright INRIA 2007
*/

#include "acosh.h"

void sacosha(float* x, int size, float* y) {
  int i = 0;
  for (i = 0; i < size; ++i) {
    y[i] = sacoshs(x[i]);
  }
}