Please don't forget fseterr, the other rude #erroring spot which fails
even though there is deactivated portable fallback code.
Subject: [PATCH] 6 syscalls is still better than a failed build
---
lib/fseterr.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/fseterr.c b/lib/fseterr.c
index eaad702..37efa4f 100644
--- a/lib/fseterr.c
+++ b/lib/fseterr.c
@@ -45,7 +45,7 @@ fseterr (FILE *fp)
fp->_Mode |= 0x200 /* _MERR */;
#elif defined __MINT__ /* Atari FreeMiNT */
fp->__error = 1;
-#elif 0 /* unknown */
+#elif 1 /* unknown */
/* Portable fallback, based on an idea by Rich Felker.
Wow! 6 system calls for something that is just a bit operation!
Not activated on any system, because there is no way to repair FP
when
--
1.7.3.4