Home | History | Annotate | Line # | Download | only in complex
carg.c revision 1.1
      1  1.1  drochner /* $NetBSD: carg.c,v 1.1 2007/08/20 16:01:31 drochner Exp $ */
      2  1.1  drochner 
      3  1.1  drochner /*
      4  1.1  drochner  * Written by Matthias Drochner <drochner (at) NetBSD.org>.
      5  1.1  drochner  * Public domain.
      6  1.1  drochner  */
      7  1.1  drochner 
      8  1.1  drochner #include "../src/namespace.h"
      9  1.1  drochner #include <complex.h>
     10  1.1  drochner #include <math.h>
     11  1.1  drochner 
     12  1.1  drochner double
     13  1.1  drochner carg(double complex z)
     14  1.1  drochner {
     15  1.1  drochner 
     16  1.1  drochner 	return atan2(__imag__ z, __real__ z);
     17  1.1  drochner }
     18