Commit cbf4f9f41f18bdb812fb854cd7fd8c4ce62ed44a

Jakob Pfender 2011-05-25T16:31:14

common: Include stat.h in include/git2/common.h instead of src/common.h 00582bcb introduced a change to git_blob_create_fromfile() that required the caller to pass a stat struct. This means that we need to include stat.h higher in the hierarchy of includes.

diff --git a/include/git2/common.h b/include/git2/common.h
index 9a27ac2..d08935f 100644
--- a/include/git2/common.h
+++ b/include/git2/common.h
@@ -28,6 +28,7 @@
 #include "thread-utils.h"
 #include <time.h>
 #include <stdlib.h>
+#include <sys/stat.h>
 
 #ifdef __cplusplus
 # define GIT_BEGIN_DECL  extern "C" {
diff --git a/src/common.h b/src/common.h
index f4f11fd..fc444c4 100644
--- a/src/common.h
+++ b/src/common.h
@@ -22,7 +22,6 @@
 #include <string.h>
 
 #include <sys/types.h>
-#include <sys/stat.h>
 
 #ifdef GIT_WIN32