better code for isinf

This commit is contained in:
Marty Kraimer
2002-05-17 15:47:50 +00:00
parent 3c76d41b70
commit 06a0fa1708
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2,6 +2,6 @@
#define epicsMathh
#include <math.h>
#define isinf(D) 0
#define isinf(D) (!finite((D)) && !(isnan((D))))
#endif /* epicsMathh */
+1 -1
View File
@@ -2,6 +2,6 @@
#define epicsMathh
#include <math.h>
#define isinf(D) 0
#define isinf(D) (!finite((D)) && !(isnan((D))))
#endif /* epicsMathh */