Add #include <float.h> --- guessing the lack of this is why Windows

machines are all rejecting isinf() calls in this file.
This commit is contained in:
Tom Lane 2010-02-03 03:25:55 +00:00
parent 98e314550c
commit 45c88a55c2
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.91 2010/02/02 16:09:11 meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.92 2010/02/03 03:25:55 tgl Exp $ */
/*
* The aim is to get a simpler inteface to the database routines.
@ -17,6 +17,7 @@
#include "postgres_fe.h"
#include <locale.h>
#include <float.h>
#include <math.h>
#include "pg_type.h"