opcua_memory.c 218 B

1234567891011121314151617181920
  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. }