diff options
author | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
---|---|---|
committer | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
commit | 386b7d3366f1359a265da207a9cafa3edf553b64 (patch) | |
tree | c76120c2c138faed822e4ae386be6ef22a738a78 /baseline/source/susan/wccmalloc.h | |
parent | 54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (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.h | 10 |
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 | |||
4 | void* susan_wccmalloc( unsigned int numberOfBytes ); | ||
5 | //! Frees ALL allocated memory space | ||
6 | void susan_wccfreeall( void ); | ||
7 | void *susan_wccmemcpy( void* dstpp, const void* srcpp, unsigned int len ); | ||
8 | void susan_wccmemset( void *p, int value, unsigned int num ); | ||
9 | |||
10 | #endif | ||