mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 01:05:54 +08:00
More NxWM build fixes
This commit is contained in:
@@ -64,7 +64,7 @@ double atan2(double y, double x)
|
||||
{
|
||||
return M_PI_2;
|
||||
}
|
||||
else if (y == 0 && x == 0) /* Undefined but returns normally 0 */
|
||||
else /* if (y == 0 && x == 0) Undefined but returns normally 0 */
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ float atan2f(float y, float x)
|
||||
{
|
||||
return M_PI_2;
|
||||
}
|
||||
else if (y == 0 && x == 0) /* Undefined but returns normally 0 */
|
||||
else /* if (y == 0 && x == 0) Undefined but returns normally 0 */
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ long double atan2l(long double y, long double x)
|
||||
{
|
||||
return M_PI_2;
|
||||
}
|
||||
else if (y == 0 && x == 0) /* Undefined but returns normally 0 */
|
||||
else /* if (y == 0 && x == 0) Undefined but returns normally 0 */
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user