Even more missing static

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano
2007-06-08 02:54:57 -07:00
parent fcd056a6d2
commit 16befb8b7f
9 changed files with 6 additions and 32 deletions

View File

@ -1116,15 +1116,6 @@ struct commit *pop_commit(struct commit_list **stack)
return item;
}
int count_parents(struct commit * commit)
{
int count;
struct commit_list * parents = commit->parents;
for (count = 0; parents; parents = parents->next,count++)
;
return count;
}
void topo_sort_default_setter(struct commit *c, void *data)
{
c->util = data;