// file : xsde/cxx/allocator.ixx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include namespace xsde { namespace cxx { #ifndef XSDE_EXCEPTIONS inline void* alloc (size_t n) { return xsde_alloc (n); } #endif inline void free (void* p) { if (p) xsde_free (p); } } }