diff options
| author | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-20 16:30:44 -0400 |
|---|---|---|
| committer | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-20 16:30:44 -0400 |
| commit | e9560dbece41136ffedd786723717efaa2a3a9fd (patch) | |
| tree | bbb5cec16daa6f194a57f49cb0532b4eeaa91a41 /all_pairs/source/anagram/anagram_stdlib.h | |
| parent | 2e4b1efc7e46b1278e162cb63632546af8f3e0e9 (diff) | |
Fix the 4 TACLeBench members that would not loop before
- anagram, audiobeam: Reset heap in _init() function
- g723_enc: Don't use static local variables
- huff_dec: Reset all global state in _init() function
Diffstat (limited to 'all_pairs/source/anagram/anagram_stdlib.h')
| -rw-r--r-- | all_pairs/source/anagram/anagram_stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/all_pairs/source/anagram/anagram_stdlib.h b/all_pairs/source/anagram/anagram_stdlib.h index 0e745d5..536fcc3 100644 --- a/all_pairs/source/anagram/anagram_stdlib.h +++ b/all_pairs/source/anagram/anagram_stdlib.h | |||
| @@ -24,6 +24,8 @@ | |||
| 24 | 24 | ||
| 25 | void *anagram_malloc( unsigned int numberOfBytes ); | 25 | void *anagram_malloc( unsigned int numberOfBytes ); |
| 26 | 26 | ||
| 27 | void anagram_free_all( void ); | ||
| 28 | |||
| 27 | void anagram_qsort( void *va, unsigned long n, unsigned long es ); | 29 | void anagram_qsort( void *va, unsigned long n, unsigned long es ); |
| 28 | 30 | ||
| 29 | #endif | 31 | #endif |
