summaryrefslogtreecommitdiffstats
path: root/unpack-trees.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-08-13 18:14:25 +0200
committerJunio C Hamano <gitster@pobox.com>2018-08-13 14:14:43 -0700
commit340f4bc9f8686c813410ef954ee00b8c66c78e91 (patch)
treeaf3e3e8508528150f6c16746bef6b073c39f1425 /unpack-trees.h
parenta52b321d2e2c314d305be86c0310b3627c1aa95b (diff)
downloadgit-340f4bc9f8686c813410ef954ee00b8c66c78e91.tar.gz
git-340f4bc9f8686c813410ef954ee00b8c66c78e91.tar.xz
unpack-trees: remove 'extern' on function declaration
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'unpack-trees.h')
-rw-r--r--unpack-trees.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/unpack-trees.h b/unpack-trees.h
index c2b434c60..534358fcc 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);