Skip to content
Snippets Groups Projects
Commit 22d79d0e authored by Marc G. Fournier's avatar Marc G. Fournier
Browse files

From: "Billy G. Allie" <Bill.Allie@mug.org>

The following patch will change the meaning of the isinf function in the
HAVE_FPCLASS section from "not finite" to "is infinity".
parent 207acd86
No related branches found
No related tags found
No related merge requests found
/* $Id: isinf.c,v 1.4 1998/02/26 04:34:10 momjian Exp $ */ /* $Id: isinf.c,v 1.5 1998/03/01 04:53:54 scrappy Exp $ */
#include <math.h> #include <math.h>
#include "config.h" #include "config.h"
...@@ -14,8 +14,6 @@ isinf(double d) ...@@ -14,8 +14,6 @@ isinf(double d)
switch (type) switch (type)
{ {
case FP_SNAN:
case FP_QNAN:
case FP_NINF: case FP_NINF:
case FP_PINF: case FP_PINF:
return (1); return (1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment