diff options
author | Elijah Newren <newren@gmail.com> | 2023-05-16 08:33:52 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-21 22:39:53 +0200 |
commit | fbffdfb11cba61dbce46442d0b136dcf2ddaeadc (patch) | |
tree | a06f221f83957ecbcce1b9999604c73e69f303f7 /builtin/diff-files.c | |
parent | sparse-index.h: move declarations for sparse-index.c from cache.h (diff) | |
download | git-fbffdfb11cba61dbce46442d0b136dcf2ddaeadc.tar.xz git-fbffdfb11cba61dbce46442d0b136dcf2ddaeadc.zip |
preload-index.h: move declarations for preload-index.c from elsewhere
We already have a preload-index.c file; move the declarations for the
functions in that file into a new preload-index.h. These were
previously split between cache.h and repository.h.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/diff-files.c')
-rw-r--r-- | builtin/diff-files.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/diff-files.c b/builtin/diff-files.c index 360464e6ef..3ac175264d 100644 --- a/builtin/diff-files.c +++ b/builtin/diff-files.c @@ -8,6 +8,7 @@ #include "diff.h" #include "diff-merges.h" #include "commit.h" +#include "preload-index.h" #include "revision.h" #include "builtin.h" #include "submodule.h" |