diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-10-15 02:49:52 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-10-15 02:49:52 +0000 |
commit | 1dc34982511d91ef8a2b71bdcb870f067c1b3da9 (patch) | |
tree | 1046adab1d4b964e0c38afeec0ee6546f61d9a8a /src/port/isinf.c | |
parent | 790c01d28099587bbe2c623d4389b62ee49b1dee (diff) | |
download | postgresql-1dc34982511d91ef8a2b71bdcb870f067c1b3da9.tar.gz postgresql-1dc34982511d91ef8a2b71bdcb870f067c1b3da9.zip |
Standard pgindent run for 8.1.
Diffstat (limited to 'src/port/isinf.c')
-rw-r--r-- | src/port/isinf.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/port/isinf.c b/src/port/isinf.c index 147f08c8fd1..0ede85a265f 100644 --- a/src/port/isinf.c +++ b/src/port/isinf.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/isinf.c,v 1.6 2004/12/31 22:03:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/port/isinf.c,v 1.7 2005/10/15 02:49:51 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -17,8 +17,7 @@ #include <float.h> #include <math.h> -#if HAVE_FPCLASS /* this is _not_ HAVE_FP_CLASS, and not - * typo */ +#if HAVE_FPCLASS /* this is _not_ HAVE_FP_CLASS, and not typo */ #if HAVE_IEEEFP_H #include <ieeefp.h> @@ -38,7 +37,6 @@ isinf(double d) } return 0; } - #else #if defined(HAVE_FP_CLASS) || defined(HAVE_FP_CLASS_D) @@ -52,7 +50,6 @@ double x; { #if HAVE_FP_CLASS int fpclass = fp_class(x); - #else int fpclass = fp_class_d(x); #endif @@ -63,7 +60,6 @@ double x; return -1; return 0; } - #elif defined(HAVE_CLASS) int isinf(double x) |