Skip to content

Commit

Permalink
Solaris needs inclusion of signal.h for signal()
Browse files Browse the repository at this point in the history
Currently the compilation fails in connect.c and merge-index.c

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Dennis Stosberg authored and Junio C Hamano committed Jun 26, 2006
1 parent 3acb27b commit e898081
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions connect.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <signal.h>

static char *server_capabilities = NULL;

Expand Down
1 change: 1 addition & 0 deletions merge-index.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>

#include "cache.h"

Expand Down

0 comments on commit e898081

Please sign in to comment.