mirror of
https://github.com/ziglang/zig.git
synced 2026-02-10 11:30:58 +00:00
8 lines
151 B
C
8 lines
151 B
C
#include "complex_impl.h"
|
|
|
|
float complex csinf(float complex z)
|
|
{
|
|
z = csinhf(CMPLXF(-cimagf(z), crealf(z)));
|
|
return CMPLXF(cimagf(z), -crealf(z));
|
|
}
|