From b3be0fc7562d51df415c14abf671deb37d8f89ef Mon Sep 17 00:00:00 2001 From: Ramsay Jones Date: Wed, 3 Dec 2008 23:54:47 +0000 Subject: [PATCH] Fix an "implicit function definition" warning on cygwin In particular, the warning relates to malloc(), which is declared in . This header is now included, indirectly, via the "common.h" header. Signed-off-by: Ramsay Jones Signed-off-by: Shawn O. Pearce --- src/oid.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/oid.c b/src/oid.c index 5f3408511..bca03c4e4 100644 --- a/src/oid.c +++ b/src/oid.c @@ -23,6 +23,7 @@ * Boston, MA 02110-1301, USA. */ +#include "common.h" #include "git/oid.h" #include