From 1dc34982511d91ef8a2b71bdcb870f067c1b3da9 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 15 Oct 2005 02:49:52 +0000 Subject: Standard pgindent run for 8.1. --- src/port/isinf.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/port/isinf.c') 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 #include -#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 @@ -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) -- cgit v1.2.3