NetBSD/lib/libm/complex/crealf.c

16 lines
224 B
C

/* $NetBSD: crealf.c,v 1.1 2007/08/20 16:01:36 drochner Exp $ */
/*
* Written by Matthias Drochner <drochner@NetBSD.org>.
* Public domain.
*/
#include <complex.h>
float
crealf(float complex z)
{
return __real__ z;
}