aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/allocator.c
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/allocator.c')
-rw-r--r--libxsde/xsde/allocator.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/libxsde/xsde/allocator.c b/libxsde/xsde/allocator.c
new file mode 100644
index 0000000..7874295
--- /dev/null
+++ b/libxsde/xsde/allocator.c
@@ -0,0 +1,32 @@
+// file : xsde/allocator.c
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+// This is the default implementation of the custom allocator functions.
+// It is primarily useful for testing when XSD/e is configured with custom
+// allocators. You can also replace this implementation with your own if
+// you would like to test with that.
+//
+
+#include <stdlib.h>
+
+#include <xsde/allocator.h>
+
+void*
+xsde_alloc (size_t n)
+{
+ return malloc (n);
+}
+
+void*
+xsde_realloc (void* p, size_t n)
+{
+ return realloc (p, n);
+}
+
+void
+xsde_free (void* p)
+{
+ free (p);
+}