diff options
author | Patrick Steinhardt <ps@pks.im> | 2025-04-29 09:52:18 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2025-04-29 10:08:12 -0700 |
commit | 1a793261c53507f7c46f748cc76378a9c5bb05cf (patch) | |
tree | 4d3c3110c499f190db9796c3a0c2f2d7c8a1e4c7 /builtin/count-objects.c | |
parent | 0b8ed25b66aedc9f4fe44d1a5cab2719290b22a9 (diff) |
object-store: move function declarations to their respective subsystems
We carry declarations for a couple of functions in "object-store.h" that
are not defined in "object-store.c", but in a different subsystem. Move
these declarations to the respective headers whose matching code files
carry the corresponding definition.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/count-objects.c')
-rw-r--r-- | builtin/count-objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/count-objects.c b/builtin/count-objects.c index 0bb5360b2f..a88c0c9c09 100644 --- a/builtin/count-objects.c +++ b/builtin/count-objects.c @@ -12,7 +12,7 @@ #include "parse-options.h" #include "quote.h" #include "packfile.h" -#include "object-store.h" +#include "object-file.h" static unsigned long garbage; static off_t size_garbage; |