From: Ben Clifford Date: Sun, 14 May 2006 20:34:56 +0000 (+0100) Subject: include header to define uint32_t, necessary on Mac OS X X-Git-Tag: v1.3.3~4^2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=d9635e9c539465792b1920437b52fa8792a71650;p=git.git include header to define uint32_t, necessary on Mac OS X Signed-off-by: Junio C Hamano --- diff --git a/pack-objects.c b/pack-objects.c index a81d609b..aa2c0986 100644 --- a/pack-objects.c +++ b/pack-objects.c @@ -10,6 +10,7 @@ #include "tree-walk.h" #include #include +#include static const char pack_usage[] = "git-pack-objects [-q] [--no-reuse-delta] [--non-empty] [--local] [--incremental] [--window=N] [--depth=N] {--stdout | base-name} < object-list"; diff --git a/sha1_file.c b/sha1_file.c index 642c45ad..673c58d4 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -13,6 +13,7 @@ #include "commit.h" #include "tag.h" #include "tree.h" +#include #ifndef O_NOATIME #if defined(__linux__) && (defined(__i386__) || defined(__PPC__))