From: Tom Lane Date: Mon, 19 Nov 2018 22:28:04 +0000 (-0500) Subject: Add needed #include. X-Git-Tag: REL_12_BETA1~1192 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb09903fe63132a35e4b217bc394882b05c0c6f3;p=postgresql Add needed #include. Per POSIX, WIFSIGNALED and related macros are provided by . Apparently on Linux they're also pulled in by some other inclusions, but BSD-ish systems are pickier. Fixes portability issue in ffa4cbd62. Per buildfarm. --- diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index b956d2a5d3..a283fcb33a 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "access/heapam.h" #include "access/htup_details.h"