diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-10-01 02:09:35 +0200 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-10-01 02:09:35 +0200 |
commit | dc8e3096d6cd4e8eb331acc36142207f4146ea57 (patch) | |
tree | b2df94c3cf6f82b6be15551c902e56a39335a47c /include/git2/config.h | |
parent | a70b3c7386aab50a3607731a0db1e69d01e11c73 (diff) | |
download | libgit2-dc8e3096d6cd4e8eb331acc36142207f4146ea57.tar.gz |
Include stdint.h in git2/config.h
Otherwise MSVC doesn't know what we're talking about when we say
int32_t or int64_t.
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'include/git2/config.h')
-rw-r--r-- | include/git2/config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/git2/config.h b/include/git2/config.h index 36647591..7e709b65 100644 --- a/include/git2/config.h +++ b/include/git2/config.h @@ -9,6 +9,7 @@ #include "common.h" #include "types.h" +#include <stdint.h> /** * @file git2/config.h |