diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-16 05:00:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-16 05:00:38 +0000 |
commit | a71802e12ec04fed791ea47f24ea30e0f5d9f5c2 (patch) | |
tree | 80d29372e0bbdd85bc4938ec048fa565c98eac12 /src/backend/port/isinf.c | |
parent | 9b645d481ccfa3638de915e0f75e3dfe9d520b79 (diff) | |
download | postgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.tar.gz postgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.zip |
Final cleanup.
Diffstat (limited to 'src/backend/port/isinf.c')
-rw-r--r-- | src/backend/port/isinf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/port/isinf.c b/src/backend/port/isinf.c index a704c39bf49..80b05f7a748 100644 --- a/src/backend/port/isinf.c +++ b/src/backend/port/isinf.c @@ -1,4 +1,4 @@ -/* $Id: isinf.c,v 1.7 1999/07/15 22:39:38 momjian Exp $ */ +/* $Id: isinf.c,v 1.8 1999/07/16 04:59:35 momjian Exp $ */ #include <math.h> @@ -26,6 +26,7 @@ isinf(double d) #if defined(HAVE_FP_CLASS) || defined(HAVE_FP_CLASS_D) #if HAVE_FP_CLASS_H +#include <fp_class.h> #endif int isinf(x) |