blob: 87a4ebecc365320498d2fff6cc9e7fe1d48668b6 [file] [log] [blame]
Kaido Kert788710a2023-06-05 07:50:22 -07001#include "complex_impl.h"
Andrew Top286dd782018-10-02 16:52:45 -07002
3long double complex conjl(long double complex z)
4{
5 return CMPLXL(creall(z), -cimagl(z));
6}