blob: 00711753be97a73e5e05395d09e4f0f6d2c021d0 [file]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <math.h>
#include "pi_const.h"
float __cdecl atan2pif(float y, float x)
{
return atan2f(y, x) / __pi_type(y);
}