musl - an implementation of the standard library for Linux-based systems
blob: b2195c84019a91360ee81bb0c8c1165f85815a59 (
plain) (
blame)
1
2
3
4
5
6
|
#include "complex_impl.h"
float complex conjf(float complex z)
{
return CMPLXF(crealf(z), -cimagf(z));
}
|