mirror of
https://github.com/ziglang/zig.git
synced 2026-01-29 10:47:40 +00:00
7 lines
98 B
C
7 lines
98 B
C
#include "complex_impl.h"
|
|
|
|
float cabsf(float complex z)
|
|
{
|
|
return hypotf(crealf(z), cimagf(z));
|
|
}
|