From 53eb0e95ab13dab5ddc29991f0e0985ab4bad73d Mon Sep 17 00:00:00 2001 From: Troy James Sobotka Date: Mon, 13 May 2019 16:55:42 -0700 Subject: [PATCH] Fix for #952 Should fix missing declaration from signal as per issue #952. --- global/crashhandler.h | 1 + 1 file changed, 1 insertion(+) diff --git a/global/crashhandler.h b/global/crashhandler.h index da11558bd..d1de95267 100644 --- a/global/crashhandler.h +++ b/global/crashhandler.h @@ -2,6 +2,7 @@ #define CRASHHANDLER_H #ifdef __GNUC__ +#include ; void handler(int sig); #endif