In .:
authorGeoff Norton <grompf@sublimeintervention.com>
Wed, 12 Mar 2008 17:10:25 +0000 (17:10 -0000)
committerGeoff Norton <grompf@sublimeintervention.com>
Wed, 12 Mar 2008 17:10:25 +0000 (17:10 -0000)
2008-03-13  Geoff Norton  <gnorton@novell.com>
* decimal.c:  Only include memory.h if the platform has it.

svn path=/trunk/mono/; revision=98065

mono/metadata/ChangeLog
mono/metadata/decimal.c

index ce6ad0891bce6a75e72fdad588ed8803133006e8..37cef50dd83cf6d8ac25112d0c6d35329e031f44 100644 (file)
@@ -1,3 +1,6 @@
+2008-03-13  Geoff Norton  <gnorton@novell.com>
+
+       * decimal.c:  Only include memory.h if the platform has it.
 
 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
 
index 626a8d91e3d27f00d2223d3df711b4b663b458ef..87214d56a83b92fd095c665f2d062ec0971fd0f3 100644 (file)
 #include "config.h"
 #include <mono/metadata/exception.h>
 #include <stdio.h>
-#include <memory.h>
 #include <stdlib.h>
 #include <string.h>
 #include <math.h>
+#ifdef HAVE_MEMORY_H
+#include <memory.h>
+#endif
 
 #ifndef DISABLE_DECIMAL