1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00

Include missing <signal.h>

At least on OpenBSD, signal(3) requires this.
This commit is contained in:
Klemens Nanni 2020-04-13 19:59:45 +02:00 committed by Nicolas Viennot
parent 54ea774265
commit f0c32a14a4

View File

@ -6,6 +6,7 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <ctype.h> #include <ctype.h>
#include <stdio.h> #include <stdio.h>
#include <signal.h>
#include <event.h> #include <event.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#ifndef IPPROTO_TCP #ifndef IPPROTO_TCP