mirror of
https://github.com/git-for-windows/git.git
synced 2026-02-04 03:33:01 -06:00
We still include "dir.h" in "reftable/system.h" even though it is not used by anything but by a single unit test. Move it over into that unit test so that we don't accidentally use any functionality provided by it in the reftable codebase. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
22 lines
441 B
C
22 lines
441 B
C
/*
|
|
Copyright 2020 Google LLC
|
|
|
|
Use of this source code is governed by a BSD-style
|
|
license that can be found in the LICENSE file or at
|
|
https://developers.google.com/open-source/licenses/bsd
|
|
*/
|
|
|
|
#ifndef SYSTEM_H
|
|
#define SYSTEM_H
|
|
|
|
/* This header glues the reftable library to the rest of Git */
|
|
|
|
#include "git-compat-util.h"
|
|
#include "lockfile.h"
|
|
#include "tempfile.h"
|
|
#include "hash.h" /* hash ID, sizes.*/
|
|
|
|
int hash_size(uint32_t id);
|
|
|
|
#endif
|