More NxWM build fixes

This commit is contained in:
Gregory Nutt
2014-09-20 16:47:00 -06:00
parent c2e69373f3
commit 5e285b8bc4
6 changed files with 18 additions and 7 deletions
+1 -1
View File
@@ -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;
}
+1 -1
View File
@@ -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;
}
+1 -1
View File
@@ -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;
}