diff options
Diffstat (limited to 'examples/general.c')
-rw-r--r-- | examples/general.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/general.c b/examples/general.c index 4bd1dac23..ddc53c3e8 100644 --- a/examples/general.c +++ b/examples/general.c @@ -36,6 +36,8 @@ * [pg]: https://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain */ +#include "common.h" + /** * ### Includes * @@ -43,9 +45,7 @@ * that you need. It should be the only thing you need to include in order * to compile properly and get all the libgit2 API. */ -#include <git2.h> -#include <stdio.h> -#include <string.h> +#include "git2.h" static void oid_parsing(git_oid *out); static void object_database(git_repository *repo, git_oid *oid); |