diff options
Diffstat (limited to 'src/complex/conj.c')
| -rw-r--r-- | src/complex/conj.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/complex/conj.c b/src/complex/conj.c new file mode 100644 index 00000000..18cadb9d --- /dev/null +++ b/src/complex/conj.c @@ -0,0 +1,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) +*/ |
