blob: 18cadb9d1fb1f67b230b750ab6cb83fc08e173aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# define TGSOURCE "conj.c"
#include "nonstd/tgmath.h"
#include <complex.h>
TYPE complex TGFN(conj)(TYPE complex z)
{
return 0.0;
}
/*d
The conj functions compute the complex conjugate of z, by rev ersing the sign of its
imaginary part.
d*/
/*r
The conj functions return the complex conjugate value.
r*/
/*
STDC(199901)
LINK(m)
*/
|