1/* $NetBSD: cargf.c,v 1.1 2007/08/20 16:01:31 drochner Exp $ */
2
3/*
4 * Public domain.
5 */
6
7#include "../src/namespace.h"
8#include <complex.h>
9#include <math.h>
10
11long double
12cargl(long double complex z)
13{
14
15	return atan2l(__imag__ z, __real__ z);
16}
17