mirror of
https://github.com/ziglang/zig.git
synced 2026-01-06 05:25:10 +00:00
7 lines
107 B
C
Vendored
7 lines
107 B
C
Vendored
#include "complex_impl.h"
|
|
|
|
float complex conjf(float complex z)
|
|
{
|
|
return CMPLXF(crealf(z), -cimagf(z));
|
|
}
|