repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
iconv: add euro symbol to GBK as single byte 0x80
[musl.git]
/
src
/
complex
/
cabs.c
blob
c5ad58ab9353a1ca895ca9bc053cac7e67d0883a
1
#include
"complex_impl.h"
2
3
double
cabs
(
double complex
z
)
4
{
5
return
hypot
(
creal
(
z
),
cimag
(
z
));
6
}