diff options
author | Elijah Newren <newren@gmail.com> | 2023-04-22 22:17:11 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-24 21:47:31 +0200 |
commit | 623b80bef2431f2f0dc550dda9da5cb633c606fd (patch) | |
tree | 73f90e2bc174dc2e181cee306cf8d3c56e4455a1 /server-info.c | |
parent | packfile.h: move pack_window and pack_entry from cache.h (diff) | |
download | git-623b80bef2431f2f0dc550dda9da5cb633c606fd.tar.xz git-623b80bef2431f2f0dc550dda9da5cb633c606fd.zip |
server-info.h: move declarations for server-info.c functions from cache.h
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'server-info.c')
-rw-r--r-- | server-info.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server-info.c b/server-info.c index 68098ddd1a..55aa04f00a 100644 --- a/server-info.c +++ b/server-info.c @@ -1,4 +1,4 @@ -#include "cache.h" +#include "git-compat-util.h" #include "alloc.h" #include "dir.h" #include "environment.h" @@ -11,6 +11,7 @@ #include "packfile.h" #include "object-file.h" #include "object-store.h" +#include "server-info.h" #include "strbuf.h" #include "wrapper.h" |