summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/cosh/ccoshs.c
blob: bfeac33ae1989876a13572bf9bed32792be885d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
**  -*- C -*-
**
** ccoshs.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Dec  7 12:04:28 2006 jofret
** Last update Wed Jan 31 11:14:28 2007 jofret
**
** Copyright INRIA 2006
*/

#include "floatComplex.h"

floatComplex		ccoshs(floatComplex z) {
  /* FIXME: Dummy... */
  return z;
}