Add include for float.h.

This commit is contained in:
Bruce Momjian 2000-01-26 06:33:49 +00:00
parent 5c25d60244
commit 02d83c4475
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,7 @@
/* -----------------------------------------------------------------------
* formatting.c
*
* $Header: /cvsroot/pgsql/src/backend/utils/adt/formatting.c,v 1.1 2000/01/25 23:53:51 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/formatting.c,v 1.2 2000/01/26 06:33:49 momjian Exp $
*
* TO_CHAR(); TO_DATETIME(); TO_DATE(); TO_NUMBER();
*
@ -61,6 +60,7 @@
#include <unistd.h>
#include <locale.h>
#include <math.h>
#include <float.h>
#include "postgres.h"
#include "utils/builtins.h"