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

#include "doubleComplex.h"

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