2002-07-17 02:42 UTC+0500 April White <awhite@mail.rosecom.ca>

* source/vm/itemapi.c
    + add conditional code if !(__DJGPP__) around #include <math.h>
This commit is contained in:
April White
2002-07-17 01:40:22 +00:00
parent 33699b2100
commit 845ffb17c7
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-07-17 02:42 UTC+0500 April White <awhite@mail.rosecom.ca>
* source/vm/itemapi.c
+ add conditional code if !(__DJGPP__) around #include <math.h>
2002-07-16 02:14 UTC+0500 April White <awhite@mail.rosecom.ca>
* source/rtl/strings.c
* include/hbapi.h

View File

@@ -83,7 +83,9 @@
*
*/
#if !defined(__DJGPP__)
#include <math.h> /* For log() */
#endif
#if defined(__BORLANDC__)
#include <float.h> /* for _finite() and _isnan() */
#endif