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

front
cinap_lenrek 2021-01-02 05:47:31 +01:00
parent 5991e01ed7
commit 0e1f4288ee
1 changed files with 3 additions and 0 deletions

View File

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