From: Andres Freund Date: Wed, 13 Dec 2017 07:32:43 +0000 (-0800) Subject: Add float.h include to int8.c, for isnan(). X-Git-Tag: REL_11_BETA1~1079 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e211f5391465bddda79e17e63c79dbc8c70e6d1;p=postgresql Add float.h include to int8.c, for isnan(). port.h redirects isnan() to _isnan() on windows, which in turn is provided by float.h rather than math.h. Therefore include the latter as well. Per buildfarm. --- diff --git a/src/backend/utils/adt/int8.c b/src/backend/utils/adt/int8.c index 42bb6ebe2f..a8e2200852 100644 --- a/src/backend/utils/adt/int8.c +++ b/src/backend/utils/adt/int8.c @@ -14,6 +14,7 @@ #include "postgres.h" #include +#include /* for _isnan */ #include #include