From 661f59838235815b5073a0ef95f410003639519e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 16 Aug 2020 16:14:04 -0400 Subject: rename non-compiled files to *.h --- src/math/isnormal.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/math/isnormal.h (limited to 'src/math/isnormal.h') diff --git a/src/math/isnormal.h b/src/math/isnormal.h new file mode 100644 index 00000000..95e82b1b --- /dev/null +++ b/src/math/isnormal.h @@ -0,0 +1,8 @@ +#include + +#define isnormal(__x) (fpclassify(__x) == FP_NORMAL) + +/* +STDC(199901) +LINK(m) +*/ -- cgit v1.2.1