]> git.ipfire.org Git - thirdparty/git.git/commit - commit.h
commit: make 'commit_graft_pos' non-static
authorTaylor Blau <me@ttaylorr.com>
Thu, 30 Apr 2020 21:11:28 +0000 (15:11 -0600)
committerJunio C Hamano <gitster@pobox.com>
Thu, 30 Apr 2020 21:18:41 +0000 (14:18 -0700)
commit183df649ca6f10d07a6d155761eef2d52a4f39cd
tree1bdee04ad383fe6663f82fc4548ac37c47c472eb
parent37b9dcabfc48b0cbce638140279878dac37aec73
commit: make 'commit_graft_pos' non-static

In the next patch, some functions will be moved from 'commit.c' to have
prototypes in a new 'shallow.h' and their implementations in
'shallow.c'.

Three functions in 'commit.c' use 'commit_graft_pos()' (they are
'register_commit_graft()', 'lookup_commit_graft()', and
'unregister_shallow()'). The first two of these will stay in 'commit.c',
but the latter will move to 'shallow.c', and thus needs
'commit_graft_pos' to be non-static.

Prepare for that by making 'commit_graft_pos' non-static so that it can
be called from both 'commit.c' and 'shallow.c'.

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit.c
commit.h