[packaging/msbuild] Bump to get new changes on xplat-master
[mono.git] / support / stdlib.c
index 523ae92482899dca3582cb5103d2e085506530d6..077a85e58f56388f1ab9357ccbfbc5f2ba8cdc4f 100644 (file)
@@ -15,7 +15,7 @@
 G_BEGIN_DECLS
 
 // See Stdlib.cs
-const char *
+void*
 Mono_Unix_VersionString ()
 {
        return "MonoProject-2015-12-1";
@@ -72,6 +72,12 @@ Mono_Posix_Stdlib_realloc (void* ptr, mph_size_t size)
        return realloc (ptr, (size_t) size);
 }
 
+void
+Mono_Posix_Stdlib_free (void* p)
+{
+       free (p);
+}
+
 G_END_DECLS
 
 /*