summaryrefslogtreecommitdiff
path: root/src/main/c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/c')
-rw-r--r--src/main/c/commonbase.h5
-rw-r--r--src/main/c/zzKludge.c15
2 files changed, 16 insertions, 4 deletions
diff --git a/src/main/c/commonbase.h b/src/main/c/commonbase.h
index 581bf54..f7a353e 100644
--- a/src/main/c/commonbase.h
+++ b/src/main/c/commonbase.h
@@ -21,10 +21,7 @@
#if WINDOOF
-static inline void fixBrokenStdio( void ){
- _setmode(_fileno(stdin), O_BINARY);
- _setmode(_fileno(stdout), O_BINARY);
-}
+void fixBrokenStdio( void );
#else
# define fixBrokenStdio()
#endif
diff --git a/src/main/c/zzKludge.c b/src/main/c/zzKludge.c
new file mode 100644
index 0000000..3d8ad5c
--- /dev/null
+++ b/src/main/c/zzKludge.c
@@ -0,0 +1,15 @@
+#include "commonbase.h"
+
+#if WINDOOF
+
+#include <fcntl.h>
+#include <stdio.h>
+#include <windows.h>
+
+
+void fixBrokenStdio( void ){
+ _setmode(_fileno(stdin), O_BINARY);
+ _setmode(_fileno(stdout), O_BINARY);
+}
+
+#endif /* end WINDOOF */