diff options
| author | Carlos Martín Nieto <cmn@dwim.me> | 2014-10-12 11:42:31 +0200 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@dwim.me> | 2015-03-11 02:36:11 +0100 |
| commit | b63b76e0b0b658dff328e0d9e109ce040830786c (patch) | |
| tree | 1c7ed9c1c0c6df008f10df0bd7feecc0e77631b3 /src/pack.c | |
| parent | c23f90053ddc10e7dbf0f99aabd5e13b0f317a42 (diff) | |
| download | libgit2-b63b76e0b0b658dff328e0d9e109ce040830786c.tar.gz | |
Reorder some khash declarations
Keep the definitions in the headers, while putting the declarations in
the C files. Putting the function definitions in headers causes
them to be duplicated if you include two headers with them.
Diffstat (limited to 'src/pack.c')
| -rw-r--r-- | src/pack.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pack.c b/src/pack.c index 3c646b778..5d0a27b91 100644 --- a/src/pack.c +++ b/src/pack.c @@ -16,6 +16,9 @@ #include <zlib.h> +GIT__USE_OFFMAP; +GIT__USE_OIDMAP; + static int packfile_open(struct git_pack_file *p); static git_off_t nth_packed_object_offset(const struct git_pack_file *p, uint32_t n); int packfile_unpack_compressed( |
