1
0
mirror of https://github.com/git/git.git synced 2024-09-28 16:13:01 +02:00

include header to define uint32_t, necessary on Mac OS X

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Ben Clifford 2006-05-14 21:34:56 +01:00 committed by Junio C Hamano
parent 66561f5a77
commit d9635e9c53
2 changed files with 2 additions and 0 deletions

@ -10,6 +10,7 @@
#include "tree-walk.h"
#include <sys/time.h>
#include <signal.h>
#include <stdint.h>
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";

@ -13,6 +13,7 @@
#include "commit.h"
#include "tag.h"
#include "tree.h"
#include <stdint.h>
#ifndef O_NOATIME
#if defined(__linux__) && (defined(__i386__) || defined(__PPC__))