ape: add missing isnan() and isinf() macros for 386 (thanks Jonas)

This commit is contained in:
cinap_lenrek 2021-01-02 05:47:31 +01:00
parent 5991e01ed7
commit 0e1f4288ee

View file

@ -73,4 +73,7 @@ extern double yn(int, double);
} }
#endif #endif
#define isnan(x) isNaN(x)
#define isinf(x) isInf(x, 0)
#endif /* __MATH */ #endif /* __MATH */