mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 14:12:36 +00:00
Remove stat_info calls
This commit is contained in:
parent
486b215706
commit
893f204b30
4 changed files with 0 additions and 7 deletions
1
gmqcc.h
1
gmqcc.h
|
@ -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
1
main.c
|
@ -791,7 +791,6 @@ cleanup:
|
|||
mem_d((void*)operators);
|
||||
|
||||
lex_cleanup();
|
||||
stat_info();
|
||||
|
||||
if (!retval && compile_errors)
|
||||
retval = 1;
|
||||
|
|
4
stat.c
4
stat.c
|
@ -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
1
test.c
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue