blob: 7b963d4d6270965b999c5dbee63752038f9e1b35 (
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
|
/*
** -*- C -*-
**
** ccoss.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Dec 7 12:04:28 2006 jofret
** Last update Thu Dec 7 15:25:09 2006 jofret
**
** Copyright INRIA 2006
*/
#ifndef STDC99
#include "floatComplex.h"
#else
#include <complex.h>
typedef float complex floatComplex;
#endif
floatComplex ccoss(floatComplex z) {
/* FIXME: Dummy... */
return z;
}
|