From cac42b266a5868fc54b2e54986fa2689676ec447 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 6 Mar 2010 21:34:41 +0100 Subject: [PATCH] builtin/merge: make checkout_fast_forward() non static and also export it in "cache.h". Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- builtin-merge.c | 2 +- cache.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/builtin-merge.c b/builtin-merge.c index 3aaec7bed..c04306684 100644 --- a/builtin-merge.c +++ b/builtin-merge.c @@ -667,7 +667,7 @@ static int count_unmerged_entries(void) return ret; } -static int checkout_fast_forward(unsigned char *head, unsigned char *remote) +int checkout_fast_forward(const unsigned char *head, const unsigned char *remote) { struct tree *trees[MAX_UNPACK_TREES]; struct unpack_trees_options opts; diff --git a/cache.h b/cache.h index d454b7e68..3cce9077c 100644 --- a/cache.h +++ b/cache.h @@ -1040,4 +1040,7 @@ void overlay_tree_on_cache(const char *tree_name, const char *prefix); char *alias_lookup(const char *alias); int split_cmdline(char *cmdline, const char ***argv); +/* builtin/merge.c */ +int checkout_fast_forward(const unsigned char *from, const unsigned char *to); + #endif /* CACHE_H */ -- 2.11.4.GIT