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>
This commit is contained in:
Dennis Stosberg 2006-06-26 10:26:13 +02:00 коммит произвёл Junio C Hamano
Родитель 3acb27b6a4
Коммит e898081dfb
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -8,6 +8,7 @@
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <signal.h>
static char *server_capabilities = NULL;

Просмотреть файл

@ -1,5 +1,6 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>
#include "cache.h"