pgsql: Add float.h include to int8.c, for isnan(). - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Add float.h include to int8.c, for isnan().
Date
Msg-id E1eP1r7-0006eb-D1@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8e211f5391465bddda79e17e63c79dbc8c70e6d1

Modified Files
--------------
src/backend/utils/adt/int8.c | 1 +
1 file changed, 1 insertion(+)


pgsql-committers by date:

Previous
From: Andres Freund
Date:
Subject: pgsql: Consistently use PG_INT(16|32|64)_(MIN|MAX).
Next
From: Christoph Berg
Date:
Subject: Re: pgsql: Provide overflow safe integer math inline functions.