repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix3.git]
/
lib
/
libm
/
complex
/
cabsl.c
blob
a627c29ace8a17889524b465cb4331e11c8c9f45
1
/* $NetBSD: cabsl.c,v 1.1 2014/10/10 00:48:18 christos Exp $ */
2
3
/*
4
* Public domain.
5
*/
6
7
#include
"../src/namespace.h"
8
#include <complex.h>
9
#include <math.h>
10
11
long double
12
cabsl
(
long double complex
z
)
13
{
14
15
return
hypotl
(
__real__ z
,
__imag__ z
);
16
}