ua_util.c 499 B

123456789
  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 UA_Int32 _UA_alloc(void **ptr, UA_Int32 size, char *pname, char *sname, char *f, UA_Int32 l);
  6. extern INLINE UA_Int32 _UA_alloca(void **ptr, UA_Int32 size, char *pname, char *sname, char *f, UA_Int32 l);
  7. extern INLINE void UA_memcpy(void *dst, void const *src, UA_Int32 size);