1#include "complex_impl.h"
2
3float complex conjf(float complex z)
4{
5 return CMPLXF(crealf(z), -cimagf(z));
6}