diff options
Diffstat (limited to 'src/complex/cimag.c')
-rw-r--r-- | src/complex/cimag.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/complex/cimag.c b/src/complex/cimag.c new file mode 100644 index 00000000..3284d4ca --- /dev/null +++ b/src/complex/cimag.c @@ -0,0 +1,23 @@ +# define TGSOURCE "cimag.c" +#include "nonstd/tgmath.h" + +#include <complex.h> + +TYPE TGFN(cimag)(TYPE complex z) +{ + return 0.0; +} + +/*d +The cimag functions compute the imaginary part of z. 164) +d*/ + +/*r +The cimag functions return the imaginary part value (as a real). +r*/ + +/* +STDC(199901) +LINK(m) +*/ + |