summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/tanh/ztanhs.c
blob: aad50c83d0099c24074f68ab49f83a95c819662f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
**  -*- C -*-
**
** ztanhs.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 12:05:48 2006 jofret
** Last update Mon Jan 29 17:04:29 2007 jofret
**
** Copyright INRIA 2006
*/

#ifndef STDC99
#include "doubleComplex.h"
#else
#include <complex.h>
typedef double complex doubleComplex;
#endif


doubleComplex		ztanhs(doubleComplex z) {
  /* FIXME: Dummy... */
  return (DoubleComplex(0,1));
}