diff options
Diffstat (limited to 'os2/include/config.h')
-rw-r--r-- | os2/include/config.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/os2/include/config.h b/os2/include/config.h new file mode 100644 index 00000000000..bb1e3d9bb0f --- /dev/null +++ b/os2/include/config.h @@ -0,0 +1,13 @@ +#include <config-os2.h>
+#include <types.h>
+
+#undef HAVE_POSIX_SIGNALS
+#undef HAVE_BSD_SIGNALS
+#define TERMIO_TTY_DRIVER
+
+#define ScreenCols() 80
+#define ScreenRows() 25
+
+#define tputs(a,b,c) puts(a)
+#define kbhit _kbhit
+//#define _read_kbd(a, b, c) _kbhit()
|