ape: add missing isnan() and isinf() macros for 386 (thanks Jonas)
This commit is contained in:
parent
5991e01ed7
commit
0e1f4288ee
1 changed files with 3 additions and 0 deletions
|
@ -73,4 +73,7 @@ extern double yn(int, double);
|
|||
}
|
||||
#endif
|
||||
|
||||
#define isnan(x) isNaN(x)
|
||||
#define isinf(x) isInf(x, 0)
|
||||
|
||||
#endif /* __MATH */
|
||||
|
|
Loading…
Reference in a new issue