Remove stat_info calls

This commit is contained in:
Dale Weiler 2015-01-13 20:25:44 -05:00
parent 486b215706
commit 893f204b30
4 changed files with 0 additions and 7 deletions

View file

@ -179,7 +179,6 @@ GMQCC_IND_STRING(GMQCC_VERSION_PATCH) \
#define GMQCC_ARRAY_COUNT(X) (sizeof(X) / sizeof((X)[0]))
/* stat.c */
void stat_info(void);
char *stat_mem_strdup(const char *, bool);
#define mem_a(SIZE) malloc(SIZE)

1
main.c
View file

@ -791,7 +791,6 @@ cleanup:
mem_d((void*)operators);
lex_cleanup();
stat_info();
if (!retval && compile_errors)
retval = 1;

4
stat.c
View file

@ -270,7 +270,3 @@ void util_htrm(hash_table_t *ht, const char *key, void (*cb)(void*)) {
void util_htdel(hash_table_t *ht) {
util_htrem(ht, NULL);
}
void stat_info() {
}
#undef ST_SIZE

1
test.c
View file

@ -1408,7 +1408,6 @@ int main(int argc, char **argv) {
}
con_change(redirout, redirerr);
succeed = test_perform("tests", defs);
stat_info();
return (succeed) ? EXIT_SUCCESS : EXIT_FAILURE;
}