From d04eac1148a491177cf107fbedc678bcc68b4e31 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut <peter_e@gmx.net> Date: Thu, 13 Apr 2017 21:47:24 -0400 Subject: [PATCH] Make header self-contained Add necessary include files for things used in the header. (signal.h needed for sig_atomic_t.) --- src/include/replication/worker_internal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/replication/worker_internal.h b/src/include/replication/worker_internal.h index 035467ce246..b8e35d4b4dd 100644 --- a/src/include/replication/worker_internal.h +++ b/src/include/replication/worker_internal.h @@ -12,6 +12,8 @@ #ifndef WORKER_INTERNAL_H #define WORKER_INTERNAL_H +#include <signal.h> + #include "access/xlogdefs.h" #include "catalog/pg_subscription.h" #include "datatype/timestamp.h" -- GitLab