aboutsummaryrefslogtreecommitdiffstats
path: root/reftable/publicbasics.c
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2023-04-22 20:17:29 +0000
committerJunio C Hamano <gitster@pobox.com>2023-04-24 12:47:33 -0700
commite3a3f5edf52c7f6161b167058b4d7c3a31dc0c3b (patch)
treecc440902307aadb05e9f7721a3fe867aa61b7027 /reftable/publicbasics.c
parent0e312eaa12c03043b0ef23021a5a820567ee0efd (diff)
downloadgit-e3a3f5edf52c7f6161b167058b4d7c3a31dc0c3b.tar.gz
reftable: ensure git-compat-util.h is the first (indirect) include
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'reftable/publicbasics.c')
-rw-r--r--reftable/publicbasics.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reftable/publicbasics.c b/reftable/publicbasics.c
index 0ad7d5c0ff..bcb82530d6 100644
--- a/reftable/publicbasics.c
+++ b/reftable/publicbasics.c
@@ -6,10 +6,10 @@ license that can be found in the LICENSE file or at
https://developers.google.com/open-source/licenses/bsd
*/
+#include "system.h"
#include "reftable-malloc.h"
#include "basics.h"
-#include "system.h"
static void *(*reftable_malloc_ptr)(size_t sz);
static void *(*reftable_realloc_ptr)(void *, size_t);