newlib/winsup/mingw/mingwex/complex/carg.c

10 lines
201 B
C
Executable File

#include <complex.h>
double __attribute__ ((const)) carg (double _Complex _Z)
{
double res;
__asm__ ("fpatan;"
: "=t" (res) : "0" (__real__ _Z), "u" (__imag__ _Z) : "st(1)");
return res;
}