summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/atanh/catanhs.c
blob: 52f2d58938a920e035ad0fd96c1a7e6d30388a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
**  -*- C -*-
**
** catanhs.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 12:04:28 2006 jofret
** Last update Thu Sep  6 15:12:27 2007 bruno
**
** Copyright INRIA 2006
*/

#include "atanh.h"

floatComplex		catanhs(floatComplex z) {

  double out_real = 0;
  double out_imag = 0;
  /* FIXME : Let's code...  */

  return FloatComplex(out_real, out_imag);
}