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

#include "asinh.h"

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