Commit d0517805d84f0fdd6c1311eb00a0d4ff257b4e47

Chris Young 2012-06-05T11:47:17

Required include for OS4 to typedef int64_t

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/include/git2/types.h b/include/git2/types.h
index b569e83..8fdfd7f 100644
--- a/include/git2/types.h
+++ b/include/git2/types.h
@@ -48,6 +48,9 @@ GIT_BEGIN_DECL
  * stat() functions, for all platforms.
  */
 #include <sys/types.h>
+#ifdef __amigaos4__
+#include <stdint.h>
+#endif
 
 #if defined(_MSC_VER)