2002-07-08 17:20 UTC+0100 Martin Vogel <vogel@inttec.de>

This commit is contained in:
Martin Vogel
2002-07-08 15:20:08 +00:00
parent 22fd21bd65
commit 372c71a2eb
2 changed files with 6 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-07-08 17:20 UTC+0100 Martin Vogel <vogel@inttec.de>
* source/rtl/math.c
* #ifdef'ed matherr() definition to hide it from compilers not supporting it
2002-07-08 10:15 UTC-0300 Luiz Rafael Culik <culikr@uol.com.br>
* contrib/rdd_ads/ads1.c
* Fixed bug on adsGetValue() function when numeric data to be putted are more the 10 number

View File

@@ -120,6 +120,7 @@ int hb_mathIsMathErr (void)
}
/* route C math lib errors to Harbour error handling */
#if defined(HB_MATH_HANDLER)
int matherr (struct exception * err)
{
int retval;
@@ -187,7 +188,7 @@ int matherr (struct exception * err)
return (retval);
}
#endif
/*
* ************************************************************