mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
390 B
20 lines
390 B
/***
|
|
*int _matherrl(struct _exception *except) - handle math errors
|
|
*
|
|
*Purpose:
|
|
* Permits the user customize fp error handling by redefining
|
|
* this function.
|
|
* The default matherr does nothing and returns 0
|
|
*
|
|
*Entry:
|
|
*
|
|
*Exit:
|
|
*
|
|
*Exceptions:
|
|
*******************************************************************************/
|
|
int _matherrl(struct _exceptionl *except)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|