From: Nguyễn Thái Ngọc Duy Date: Mon, 13 Aug 2018 16:14:25 +0000 (+0200) Subject: unpack-trees: remove 'extern' on function declaration X-Git-Tag: v2.19.0-rc0~16^2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=340f4bc9f8686c813410ef954ee00b8c66c78e91;p=git unpack-trees: remove 'extern' on function declaration Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/unpack-trees.h b/unpack-trees.h index c2b434c606..534358fcc5 100644 --- a/unpack-trees.h +++ b/unpack-trees.h @@ -82,8 +82,8 @@ struct unpack_trees_options { struct exclude_list *el; /* for internal use */ }; -extern int unpack_trees(unsigned n, struct tree_desc *t, - struct unpack_trees_options *options); +int unpack_trees(unsigned n, struct tree_desc *t, + struct unpack_trees_options *options); int verify_uptodate(const struct cache_entry *ce, struct unpack_trees_options *o);