diff options
Diffstat (limited to 'src/complex/cimag.c')
-rw-r--r-- | src/complex/cimag.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/complex/cimag.c b/src/complex/cimag.c new file mode 100644 index 0000000..d6b0e68 --- /dev/null +++ b/src/complex/cimag.c @@ -0,0 +1,6 @@ +#include "complex_impl.h" + +double (cimag)(double complex z) +{ + return cimag(z); +} |