* mingwex/fe*.c: Revert previous changes.

* include/fenv.h: Revert previous changes.

	Add Changelog entry for the reverted change.
This commit is contained in:
Danny Smith
2005-08-25 08:39:54 +00:00
parent b9ebff640a
commit 9e28e551f2
9 changed files with 42 additions and 14 deletions

View File

@@ -6,9 +6,10 @@
representation of the exception flags indicated by the argument
excepts in the object pointed to by the argument flagp. */
void fegetexceptflag (fexcept_t * flagp, int excepts)
int fegetexceptflag (fexcept_t * flagp, int excepts)
{
unsigned short _sw;
__asm__ ("fnstsw %%ax;": "=a" (_sw));
*flagp = _sw & excepts & FE_ALL_EXCEPT;
return 0;
}