libcom: import some C99 math (isnan etc.) into global namespace

This commit is contained in:
Ralph Lange
2019-12-05 16:44:59 +01:00
parent 1d18aa3e6c
commit 70e9d46d75
+8
View File
@@ -14,6 +14,14 @@
#include <shareLib.h>
#ifdef __cplusplus
#include <cmath>
using std::isfinite;
using std::isinf;
using std::isnan;
using std::isnormal;
extern "C" {
#endif