fix misleading comment in strstr
[musl.git] / src / complex / cargl.c
blob88f95f96e9c02e2e8877c771591259f12c2d9d08
1 #include "complex_impl.h"
3 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
4 long double cargl(long double complex z)
6 return carg(z);
8 #else
9 long double cargl(long double complex z)
11 return atan2l(cimagl(z), creall(z));
13 #endif