mirror of
https://github.com/ziglang/zig.git
synced 2026-02-06 06:27:05 +00:00
7 lines
96 B
C
Vendored
7 lines
96 B
C
Vendored
#include "complex_impl.h"
|
|
|
|
double carg(double complex z)
|
|
{
|
|
return atan2(cimag(z), creal(z));
|
|
}
|