1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-29 09:29:10 +00:00

(svn r3297) Staticise

This commit is contained in:
tron
2005-12-14 06:20:23 +00:00
parent ce94c90a7b
commit 23bfc03054
12 changed files with 24 additions and 21 deletions

View File

@@ -504,7 +504,8 @@ void delete_Hash(Hash* h, bool free_values) {
free(h);
}
void stat_Hash(Hash* h)
#ifdef HASH_STATS
static void stat_Hash(Hash* h)
{
uint used_buckets = 0;
uint max_collision = 0;
@@ -546,6 +547,7 @@ void stat_Hash(Hash* h)
}
printf ("}\n");
}
#endif
void clear_Hash(Hash* h, bool free_values)
{