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.
This commit is contained in:
Jakob Pfender 2011-05-25 16:31:14 +02:00
parent c1a2a14e02
commit cbf4f9f41f
2 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,7 @@
#include "thread-utils.h" #include "thread-utils.h"
#include <time.h> #include <time.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/stat.h>
#ifdef __cplusplus #ifdef __cplusplus
# define GIT_BEGIN_DECL extern "C" { # define GIT_BEGIN_DECL extern "C" {

View File

@ -22,7 +22,6 @@
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h>
#ifdef GIT_WIN32 #ifdef GIT_WIN32