diff options
Diffstat (limited to 'src/complex/conj.c')
| -rw-r--r-- | src/complex/conj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/complex/conj.c b/src/complex/conj.c index f1631106..18e50c9c 100644 --- a/src/complex/conj.c +++ b/src/complex/conj.c @@ -5,7 +5,7 @@ TYPE complex TGFN(conj)(TYPE complex z) { - return 0.0; + return TGFN(creal)(z) - TGFN(cimag)(z); } /*d |
