X-Git-Url: http://nsz.repo.hu/git/?p=libm;a=blobdiff_plain;f=src%2Fcmath%2Fconjl.c;fp=src%2Fcmath%2Fconjl.c;h=01332262ec46f69586d055e169d3e67d375e7382;hp=0000000000000000000000000000000000000000;hb=5718e964d8a5c273a91b4d86d16926f54151c58f;hpb=1305df184d9d04274ce170864c92af8cbeae23e2 diff --git a/src/cmath/conjl.c b/src/cmath/conjl.c new file mode 100644 index 0000000..0133226 --- /dev/null +++ b/src/cmath/conjl.c @@ -0,0 +1,6 @@ +#include "libm.h" + +long double complex conjl(long double complex z) +{ + return cpackl(creall(z), -cimagl(z)); +}