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