Add check for C99 round function to configure, and define
a fallback function if round doesn't exist.
diff --git a/Include/pymath.h b/Include/pymath.h
index 8872e8a..816691a 100644
--- a/Include/pymath.h
+++ b/Include/pymath.h
@@ -22,6 +22,10 @@
 extern double copysign(double, double);
 #endif
 
+#ifndef HAVE_ROUND
+extern double round(double);
+#endif
+
 #ifndef HAVE_ACOSH
 extern double acosh(double);
 #endif