1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

- cosmetic changes from "Timur I. Bakeyev" <timur@bat.ru>

Daniel
This commit is contained in:
Daniel Veillard
2000-04-08 13:17:27 +00:00
parent 5d211f4c7a
commit fc708e2b7c
6 changed files with 13 additions and 5 deletions

View File

@ -110,7 +110,7 @@ int isinf(double d) {
#elif defined(finite) || defined(HAVE_FINITE)
int isinf(double x) { return !finite(x) && x==x; }
#elif defined(HUGE_VAL)
static int isinf(double x)
int isinf(double x)
{
if (x == HUGE_VAL)
return(1);