Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2009-04-19 13:55:38 +0400
committerJunio C Hamano <gitster@pobox.com>2009-05-10 11:30:28 +0400
commit1c876546bda5dde35d4ae887ad6d24ed16ec953a (patch)
tree1f64c61206188cd288c5b128c42fde94540da7cb /bisect.h
parentf01f1099f40f24fe6f7802185340a6fa3a3d4f35 (diff)
rev-list: make "estimate_bisect_steps" non static
Because it will be used from "bisect.c" too. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bisect.h')
-rw-r--r--bisect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/bisect.h b/bisect.h
index fdba913877..cb37ddfac0 100644
--- a/bisect.h
+++ b/bisect.h
@@ -26,4 +26,6 @@ extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all);
extern int bisect_next_vars(const char *prefix);
+extern int estimate_bisect_steps(int all);
+
#endif