summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/cosh/dcoshs.c
blob: 83769292505376b88eb4eafa37f9f34ce9020e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
**  -*- C -*-
**
** dcoshs.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 12:02:41 2006 jofret
** Last update Fri Apr 20 14:40:59 2007 jofret
**
** Copyright INRIA 2006
*/

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

double	       dcoshs(double x) {
  return (cosh(x));
}