diff options
author | Dennis Stosberg <dennis@stosberg.net> | 2006-06-26 10:26:13 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-26 02:11:44 -0700 |
commit | e898081dfbedcb77e3dfcdc9c347669f6c093d65 (patch) | |
tree | bd5e794df8b3826957310088c5f2a2fb140d5177 /merge-index.c | |
parent | 3acb27b6a4bd98dd58c1c17234b9b53ce0d78454 (diff) | |
download | git-e898081dfbedcb77e3dfcdc9c347669f6c093d65.tar.gz |
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.c | 1 |
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" |