Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d2-release
/
.
/
src
/
complex
/
conjl.c
blob: 87a4ebecc365320498d2fff6cc9e7fe1d48668b6 [
file
] [
log
] [
blame
] [
edit
]
#include
"complex_impl.h"
long
double
complex conjl
(
long
double
complex z
)
{
return
CMPLXL
(
creall
(
z
),
-
cimagl
(
z
));
}