Fix mdoc(7)/man(7) mix up.
[netbsd-mini2440.git] / lib / libm / complex / cargf.c
blobc5cc80df093c53c32c4d4dcb4305cca709e619e9
1 /* $NetBSD$ */
3 /*
4 * Written by Matthias Drochner <drochner@NetBSD.org>.
5 * Public domain.
6 */
8 #include "../src/namespace.h"
9 #include <complex.h>
10 #include <math.h>
12 float
13 cargf(float complex z)
16 return atan2f(__imag__ z, __real__ z);