ua_util.c 430 B

12345678910111213
  1. #include "ua_util.h"
  2. /* the extern inline in a *.c-file is required for other compilation units to
  3. see the inline function. */
  4. extern INLINE UA_Int32 _UA_free(void *ptr, char *pname, char *f, UA_Int32 l);
  5. extern INLINE void UA_memcpy(void *dst, void const *src, UA_Int32 size);
  6. #ifdef DEBUG
  7. extern INLINE void * _UA_alloc(UA_Int32 size, char *file, UA_Int32 line);
  8. #else
  9. extern INLINE void * _UA_alloc(UA_Int32 size);
  10. #endif