mirror of
https://github.com/ziglang/zig.git
synced 2026-01-30 11:13:38 +00:00
7 lines
105 B
C
7 lines
105 B
C
#include "complex_impl.h"
|
|
|
|
double complex conj(double complex z)
|
|
{
|
|
return CMPLX(creal(z), -cimag(z));
|
|
}
|