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

#include "doubleComplex.h"

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