treewide: ensure one of the appropriate headers is sourced first

We had several C files ignoring the rule to include one of the
appropriate headers first; fix that.

While at it, the rule in Documentation/CodingGuidelines about which
header to include has also fallen out of sync, so update the wording to
mention other allowed headers.

Unfortunately, C files in reftable/ don't actually follow the previous
or updated rule.  If you follow the #include chain in its C files,
reftable/system.h _tends_ to be first (i.e. record.c first includes
record.h, which first includes basics.h, which first includees
system.h), but not always (e.g. publicbasics.c includes another header
first that does not include system.h).  However, I'm going to punt on
making actual changes to the C files in reftable/ since I do not want to
risk bringing it out-of-sync with any version being used externally.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Elijah Newren
2023-02-24 00:09:20 +00:00
committed by Junio C Hamano
parent 06dd2baa8d
commit 8bff5ca030
14 changed files with 19 additions and 3 deletions

View File

@ -1,3 +1,4 @@
#include "git-compat-util.h"
#include "commit-graph.h"
#include "repository.h"

View File

@ -1,3 +1,4 @@
#include "git-compat-util.h"
#include "packfile.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);

View File

@ -1,3 +1,4 @@
#include "git-compat-util.h"
#include "object-store.h"
#include "packfile.h"