diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-02-01 03:21:53 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-02-01 03:21:53 +0200 |
commit | b70e4f8a0391a8ec9bcc2ba06a30cc4889e93191 (patch) | |
tree | 0a9498a82b0d8bb67d76ce3e695ef3a82c430f95 | |
parent | 2f8a8ab24b034cb91e6ce80a7aa8cc330b7baebf (diff) | |
download | libgit2-b70e4f8a0391a8ec9bcc2ba06a30cc4889e93191.tar.gz |
Add required includes in "oid.h"
The file was previously failing to be included stand-alone.
-rw-r--r-- | src/git2/oid.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/git2/oid.h b/src/git2/oid.h index 7c9534290..5cac46f3b 100644 --- a/src/git2/oid.h +++ b/src/git2/oid.h @@ -25,6 +25,9 @@ #ifndef INCLUDE_git_oid_h__ #define INCLUDE_git_oid_h__ +#include "common.h" +#include "types.h" + /** * @file git2/oid.h * @brief Git object id routines |