Move "Requires" into PUP namespace
[charm.git] / src / ck-perf / tracec.C
blobdfadbb9912fa970049a00960b203c993186ea360
1 #include "charm++.h"
2 #include "trace-common.h"
3 #include "trace.h"
4 #include "tracec.h"
6 extern "C" {
8   void traceMalloc_c(void *where, int size, void **stack, int stackSize) {
9     _TRACE_MALLOC(where, size, stack, stackSize);
10   }
12   void traceFree_c(void *where, int size) {
13     _TRACE_FREE(where, size);
14   }