fix for implicit declaration, not sure why this happens but OpenSuse 11.1 wouldn't build.

This commit is contained in:
Campbell Barton 2010-10-19 04:25:16 +00:00
parent 3498e22468
commit 13d684f7bb

@ -52,7 +52,8 @@ double round(double x)
y += 1.0;
return copysign(y, x);
}
#else /* OpenSuse 11.1 seems to need this. */
double round(double x);
#endif