summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2017-04-14 01:47:24 +0000
committerPeter Eisentraut2017-04-14 01:47:24 +0000
commitd04eac1148a491177cf107fbedc678bcc68b4e31 (patch)
tree71a947bca44ee1d61ac71fcace11ba6efa24befc
parentff46f2a0534560367ba748ac9d859a2cf05ce3fc (diff)
Make header self-contained
Add necessary include files for things used in the header. (signal.h needed for sig_atomic_t.)
-rw-r--r--src/include/replication/worker_internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/replication/worker_internal.h b/src/include/replication/worker_internal.h
index 035467ce24..b8e35d4b4d 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"