fix a conflict for isinf

This commit is contained in:
dwarning 2009-02-12 19:33:07 +00:00
parent 051a765488
commit 33cfd6e886
1 changed files with 1 additions and 0 deletions

View File

@ -35,6 +35,7 @@ extern int isnan(double);
#ifndef HAVE_ISINF
#if defined(HAVE_FINITE) && (HAVE_DECL_ISNAN || defined (HAVE_ISNAN))
#define isinf(x) (!finite(x) && !isnan(x))
#define HAVE_ISINF
#else
#ifdef HAVE_IEEEFP_H
extern int isinf(double);