From 845ffb17c7a4b46f29c58c8444ebf6644804d93a Mon Sep 17 00:00:00 2001 From: April White Date: Wed, 17 Jul 2002 01:40:22 +0000 Subject: [PATCH] 2002-07-17 02:42 UTC+0500 April White * source/vm/itemapi.c + add conditional code if !(__DJGPP__) around #include --- harbour/ChangeLog | 4 ++++ harbour/source/vm/itemapi.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 5ea14c775f..2be39cdcbb 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2002-07-17 02:42 UTC+0500 April White + * source/vm/itemapi.c + + add conditional code if !(__DJGPP__) around #include + 2002-07-16 02:14 UTC+0500 April White * source/rtl/strings.c * include/hbapi.h diff --git a/harbour/source/vm/itemapi.c b/harbour/source/vm/itemapi.c index 075c225cca..4a7cf093f6 100644 --- a/harbour/source/vm/itemapi.c +++ b/harbour/source/vm/itemapi.c @@ -83,7 +83,9 @@ * */ +#if !defined(__DJGPP__) #include /* For log() */ +#endif #if defined(__BORLANDC__) #include /* for _finite() and _isnan() */ #endif