Add missing function prototypes

This commit is contained in:
Adam Goldsmith 2016-04-28 01:42:47 -04:00
parent 8548d6ede5
commit 27b90ae3ed
1 changed files with 2 additions and 0 deletions

2
csim.c
View File

@ -52,6 +52,8 @@ void free_cache(linked_line** cache, long num_sets);
void free_set(linked_line* line);
void print_cache(linked_line** cache, long num_sets);
void print_set(linked_line* line);
linked_line* find_line(linked_line* set_head, long tag);
void increment_result_counters(char result, results* score);
/* Global variables */
uint8_t VERBOSE = 0; /**< If nonzero, mprintf will not print. Set in main() if -v flag is given. */