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