summaryrefslogtreecommitdiffstats
path: root/baseline/source/susan/wccmalloc.h
diff options
context:
space:
mode:
authorJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
committerJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
commit386b7d3366f1359a265da207a9cafa3edf553b64 (patch)
treec76120c2c138faed822e4ae386be6ef22a738a78 /baseline/source/susan/wccmalloc.h
parent54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (diff)
Reorganize and commit all the modified TACLeBench code and run scripts
Diffstat (limited to 'baseline/source/susan/wccmalloc.h')
-rw-r--r--baseline/source/susan/wccmalloc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/baseline/source/susan/wccmalloc.h b/baseline/source/susan/wccmalloc.h
new file mode 100644
index 0000000..dbb2ada
--- /dev/null
+++ b/baseline/source/susan/wccmalloc.h
@@ -0,0 +1,10 @@
1#ifndef _WCCMALLOC_H
2#define _WCCMALLOC_H
3
4void* susan_wccmalloc( unsigned int numberOfBytes );
5//! Frees ALL allocated memory space
6void susan_wccfreeall( void );
7void *susan_wccmemcpy( void* dstpp, const void* srcpp, unsigned int len );
8void susan_wccmemset( void *p, int value, unsigned int num );
9
10#endif