From e898081dfbedcb77e3dfcdc9c347669f6c093d65 Mon Sep 17 00:00:00 2001 From: Dennis Stosberg Date: Mon, 26 Jun 2006 10:26:13 +0200 Subject: [PATCH] Solaris needs inclusion of signal.h for signal() Currently the compilation fails in connect.c and merge-index.c Signed-off-by: Junio C Hamano --- connect.c | 1 + merge-index.c | 1 + 2 files changed, 2 insertions(+) diff --git a/connect.c b/connect.c index db7342e4d2..66e78a2905 100644 --- a/connect.c +++ b/connect.c @@ -8,6 +8,7 @@ #include #include #include +#include static char *server_capabilities = NULL; diff --git a/merge-index.c b/merge-index.c index 190e12fb7c..0498a6f45e 100644 --- a/merge-index.c +++ b/merge-index.c @@ -1,5 +1,6 @@ #include #include +#include #include "cache.h" -- 2.11.4.GIT