annotate maths/nan-inf.h @ 198:0ec25cf85e78

Update the OSX build flags
author Chris Cannam
date Thu, 24 Mar 2016 13:29:56 +0000
parents c313a173f4a9
children 701233f8ed41
rev   line source
cannam@79 1
cannam@79 2 #ifndef NAN_INF_H
cannam@79 3 #define NAN_INF_H
cannam@79 4
Chris@92 5 #define ISNAN(x) (sizeof(x) == sizeof(double) ? ISNANd(x) : ISNANf(x))
Chris@92 6 static inline int ISNANf(float x) { return x != x; }
Chris@92 7 static inline int ISNANd(double x) { return x != x; }
Chris@92 8
Chris@92 9 #define ISINF(x) (sizeof(x) == sizeof(double) ? ISINFd(x) : ISINFf(x))
Chris@92 10 static inline int ISINFf(float x) { return !ISNANf(x) && ISNANf(x - x); }
Chris@92 11 static inline int ISINFd(double x) { return !ISNANd(x) && ISNANd(x - x); }
cannam@79 12
cannam@79 13 #endif