]> git.ipfire.org Git - thirdparty/git.git/blob - reftable/reftable-malloc.h
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / reftable / reftable-malloc.h
1 /*
2 Copyright 2020 Google LLC
3
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
8
9 #ifndef REFTABLE_H
10 #define REFTABLE_H
11
12 #include <stddef.h>
13
14 /* Overrides the functions to use for memory management. */
15 void reftable_set_alloc(void *(*malloc)(size_t),
16 void *(*realloc)(void *, size_t), void (*free)(void *));
17
18 #endif