mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:42:56 +00:00
33 lines
444 B
C
33 lines
444 B
C
#include <precomp.h>
|
|
#include <math.h>
|
|
|
|
|
|
int _matherr(struct _exception* e)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* not exported by NTDLL
|
|
*
|
|
* @unimplemented
|
|
*/
|
|
void __setusermatherr(int (*handler)(struct _exception*))
|
|
{
|
|
|
|
}
|
|
|
|
|
|
#define _FPIEEE_RECORD void
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
int _fpieee_flt(
|
|
unsigned long exception_code,
|
|
struct _EXCEPTION_POINTERS* ExceptionPointer,
|
|
int (*handler)(_FPIEEE_RECORD*)
|
|
)
|
|
{
|
|
return 0;
|
|
}
|