diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2015-06-22 16:03:05 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-22 22:17:12 +0200 |
commit | fb58c8d50734c14a90f3e4e7dd99f36e4f37c4e6 (patch) | |
tree | d9e21b6047e0c56c736c9ed410747874a8f5e932 /builtin/log.c | |
parent | initial_ref_transaction_commit(): check for ref D/F conflicts (diff) | |
download | git-fb58c8d50734c14a90f3e4e7dd99f36e4f37c4e6.tar.xz git-fb58c8d50734c14a90f3e4e7dd99f36e4f37c4e6.zip |
refs: move the remaining ref module declarations to refs.h
Some functions from the refs module were still declared in cache.h.
Move them to refs.h.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/log.c')
-rw-r--r-- | builtin/log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/log.c b/builtin/log.c index e67671e37a..3caa91776a 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -5,6 +5,7 @@ * 2006 Junio Hamano */ #include "cache.h" +#include "refs.h" #include "color.h" #include "commit.h" #include "diff.h" |