mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-27 01:29:58 +01:00
7 lines
134 B
C
7 lines
134 B
C
#include <math.h>
|
|
#include <private/ieee754.h>
|
|
|
|
int isnand(double x) {
|
|
return (ieee754exp64(x) == 0x7FF && ieee754man64(x) != 0);
|
|
}
|