blob: e8b86f5c918722765c5008e96202851498c97ae9 [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"
double __cdecl cospi(double x)
{
x = fmod(x, 2.0);
return cos(x * __pi_type(x));
}