Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
complex
cproj.c
pretty
plain
permalink
blame
history
•
8 lines
•
173 B
1
#include "complex_impl.h"
2
3
double complex cproj(double complex z)
4
{
5
	if (isinf(creal(z)) || isinf(cimag(z)))
6
		return CMPLX(INFINITY, copysign(0.0, cimag(z)));
7
	return z;
8
}