From e9560dbece41136ffedd786723717efaa2a3a9fd Mon Sep 17 00:00:00 2001 From: Joshua Bakita Date: Tue, 20 Oct 2020 16:30:44 -0400 Subject: 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 --- all_pairs/source/anagram/anagram_stdlib.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'all_pairs/source/anagram/anagram_stdlib.h') 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 @@ void *anagram_malloc( unsigned int numberOfBytes ); +void anagram_free_all( void ); + void anagram_qsort( void *va, unsigned long n, unsigned long es ); #endif -- cgit v1.2.2