mirror of
https://github.com/ziglang/zig.git
synced 2026-02-07 15:07:12 +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));
|
|
}
|