mirror of
https://github.com/postgres/postgres.git
synced 2026-06-13 10:40:09 -04:00
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.
This commit is contained in:
parent
f512a6e132
commit
8e211f5391
1 changed files with 1 additions and 0 deletions
|
|
@ -14,6 +14,7 @@
|
|||
#include "postgres.h"
|
||||
|
||||
#include <ctype.h>
|
||||
#include <float.h> /* for _isnan */
|
||||
#include <limits.h>
|
||||
#include <math.h>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue