2010-07-21 16:03:44 +00:00
|
|
|
/**
|
|
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
|
|
|
* This file is part of the w64 mingw-runtime package.
|
|
|
|
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
|
|
|
*/
|
2021-07-10 11:24:42 +00:00
|
|
|
|
2010-07-21 16:03:44 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2015-05-14 20:20:59 +00:00
|
|
|
#if defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_AMD64))
|
|
|
|
#pragma function(sinf)
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
|
|
|
float sinf(float x)
|
2010-07-21 16:03:44 +00:00
|
|
|
{
|
2015-05-14 20:20:59 +00:00
|
|
|
return ((float)sin((double)x));
|
2010-07-21 16:03:44 +00:00
|
|
|
}
|