From 2b172035cd1dbcb940f0e90b24459ef1506ca2e6 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 25 Sep 2015 13:06:37 +0800 Subject: [PATCH] src: Include "signal.h" in "util.h" It is required for using the "SIGABRT" constant. It doesn't cause compilation errors in Node because most files already have "signal.h" included, but it causes errors for third party embedder. --- src/util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.h b/src/util.h index eb743b62462f25..20cd54758cb102 100644 --- a/src/util.h +++ b/src/util.h @@ -4,6 +4,7 @@ #include "v8.h" #include +#include #include #include