build fix for VMS

This commit is contained in:
Alan Hourihane 2004-04-11 22:22:23 +00:00
parent 2db8fe2906
commit 7873f85684
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ static INLINE int IS_INF_OR_NAN( float x )
#define IS_INF_OR_NAN(x) (!isfinite(x))
#elif defined(finite)
#define IS_INF_OR_NAN(x) (!finite(x))
#elif __VMS
#elif defined(__VMS)
#define IS_INF_OR_NAN(x) (!finite(x))
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define IS_INF_OR_NAN(x) (!isfinite(x))