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


#ifndef STDC99
#include "doubleComplex.h"
#else
#include <complex.h>
typedef double complex doubleComplex;
#endif


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