mirror of
https://github.com/ziglang/zig.git
synced 2025-12-15 02:33:07 +00:00
8 lines
151 B
C
Vendored
8 lines
151 B
C
Vendored
#include "complex_impl.h"
|
|
|
|
float complex ctanf(float complex z)
|
|
{
|
|
z = ctanhf(CMPLXF(-cimagf(z), crealf(z)));
|
|
return CMPLXF(cimagf(z), -crealf(z));
|
|
}
|