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

#include "doubleComplex.h"

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