summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/acosh/sacoshs.c
blob: 4163cb2240ab67ff474aab965c375660cfc70973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
**  -*- C -*-
**
** sacoshs.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Fri Jan  5 10:25:44 2007 jofret
** Last update Thu Sep  6 10:43:12 2007 bruno
**
** Copyright INRIA 2007
*/

#include <math.h>
#include "acosh.h"

float		sacoshs(float x) {
  return (acosh(x));
}