[w32file] Remove dead code
[mono.git] / mono / utils / mono-publib.c
1 /**
2  * \file
3  */
4
5 #include "config.h"
6 #include <mono/utils/mono-publib.h>
7 #include <glib.h>
8
9 void
10 mono_free (void *ptr)
11 {
12         g_free (ptr);
13 }
14
15
16 /**
17  * mono_set_allocator_vtable
18  * Make the runtime use the functions in \p vtable for allocating memory.
19  * The provided functions must have the same semantics of their libc's equivalents.
20  * \returns TRUE if the vtable was installed. FALSE if the version is incompatible.
21  */
22 mono_bool
23 mono_set_allocator_vtable (MonoAllocatorVTable* vtable)
24 {
25         if (vtable->version != MONO_ALLOCATOR_VTABLE_VERSION)
26                 return FALSE;
27         GMemVTable g_mem_vtable = { vtable->malloc, vtable->realloc, vtable->free, vtable->calloc};
28         g_mem_set_vtable (&g_mem_vtable);
29         return TRUE;
30 }