fixed isinf() implementation

This commit is contained in:
Jeff Hill
2002-05-28 18:37:34 +00:00
parent 979ce1be90
commit 5d8742632b
+1 -1
View File
@@ -5,6 +5,6 @@
#include <float.h>
#define isnan(D) _isnan(D)
#define isinf(D) _isinf(D)
#define isinf(D) ( !_finite(D) && !_isnan(D) )
#endif /* epicsMathh */