aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/allocator.c
blob: 3e46b2048d252eca8d90faabb4b002df2212f06a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// file      : xsde/allocator.c
// copyright : Copyright (c) 2005-2011 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);
}