mirror of
https://github.com/ziglang/zig.git
synced 2025-12-13 09:43:09 +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));
|
|
}
|