1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
--- /usr/include/stdlib.h 2020-04-14 19:26:04.000000000 +0000
+++ include/stdlib.h 2020-05-05 19:03:23.910980758 +0000
@@ -130,6 +130,20 @@
/* Likewise for '_FloatN' and '_FloatNx'. */
+/* For whatever reason our sparse does not understand these new compiler types */
+#undef __GLIBC_USE_IEC_60559_TYPES_EXT
+#define __GLIBC_USE_IEC_60559_TYPES_EXT 0
+#undef __HAVE_FLOAT32
+#define __HAVE_FLOAT32 0
+#undef __HAVE_FLOAT32X
+#define __HAVE_FLOAT32X 0
+#undef __HAVE_FLOAT64
+#define __HAVE_FLOAT64 0
+#undef __HAVE_FLOAT64X
+#define __HAVE_FLOAT64X 0
+#undef __HAVE_FLOAT128
+#define __HAVE_FLOAT128 0
+
#if __HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)
extern _Float16 strtof16 (const char *__restrict __nptr,
char **__restrict __endptr)
|