opcua_memory.c 217 B

12345678910111213141516171819
  1. /*
  2. * opcua_memory.c
  3. *
  4. * Created on: Jan 30, 2014
  5. * Author: opcua
  6. */
  7. #include "opcua_memory.h"
  8. void *opcua_malloc(size_t size)
  9. {
  10. return malloc(size);
  11. }
  12. void opcua_free(void *pointer)
  13. {
  14. free(pointer);
  15. }