Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-04-19 22:52:04 +0400
committerRussell Belfer <rb@github.com>2013-04-21 22:50:55 +0400
commit83041c711cd7d9fccb7a1327e642ce33f0705370 (patch)
tree59ccacdd18b54861a48bcdf56a7d1c245ab50382 /src/config.c
parent3a2a511be3ae225e5c5a3d38f65d672805ec99cd (diff)
Move git_config_backend to include/git2/sys
Moving backend implementor objects into include/git2/sys so the APIs can be isolated from the ones that normal libgit2 users would be likely to use.
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index 5379b0ec5..1283522ca 100644
--- a/src/config.c
+++ b/src/config.c
@@ -9,6 +9,7 @@
#include "fileops.h"
#include "config.h"
#include "git2/config.h"
+#include "git2/sys/config.h"
#include "vector.h"
#include "buf_text.h"
#include "config_file.h"