Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Stosberg <dennis@stosberg.net>2006-06-26 12:26:13 +0400
committerJunio C Hamano <junkio@cox.net>2006-06-26 13:11:44 +0400
commite898081dfbedcb77e3dfcdc9c347669f6c093d65 (patch)
treebd5e794df8b3826957310088c5f2a2fb140d5177 /merge-index.c
parent3acb27b6a4bd98dd58c1c17234b9b53ce0d78454 (diff)
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 <junkio@cox.net>
Diffstat (limited to 'merge-index.c')
-rw-r--r--merge-index.c1
1 files changed, 1 insertions, 0 deletions
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 <sys/types.h>
#include <sys/wait.h>
+#include <signal.h>
#include "cache.h"