mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
5980be9b3c
This work is based in part on code from NetBSD libm, libc and kernel. The library is partly public domain and partly BSD-style licensed.
17 lines
289 B
C
17 lines
289 B
C
/* $NetBSD: carg.c,v 1.1 2007/08/20 16:01:31 drochner Exp $ */
|
|
|
|
/*
|
|
* Written by Matthias Drochner <drochner@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include "../src/namespace.h"
|
|
#include <complex.h>
|
|
#include <math.h>
|
|
|
|
double
|
|
carg(double complex z)
|
|
{
|
|
|
|
return atan2(__imag__ z, __real__ z);
|
|
}
|