summaryrefslogtreecommitdiff
path: root/libc/msdos/conio.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/msdos/conio.c')
-rw-r--r--libc/msdos/conio.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/libc/msdos/conio.c b/libc/msdos/conio.c
index 1abfa40..f6f9105 100644
--- a/libc/msdos/conio.c
+++ b/libc/msdos/conio.c
@@ -1,4 +1,12 @@
-/* Is this BIOS keyboard io ? */
+/* Copyright (C) 1999 Robert de Bath <rdebath@cix.compulink.co.uk>
+ * This file is part of the Linux-8086 C library and is distributed
+ * under the GNU Library General Public License.
+ */
+
+/*
+ * I'm not sure if these should be BIOS or dos calls, so I'll assume they're
+ * BIOS calls but I may have to do something about Ctrl-C.
+ */
getch()
{
@@ -50,6 +58,8 @@ char * str;
while(*str) putch(*str++);
}
+#if 0
+
cgets()
{
}
@@ -70,4 +80,4 @@ gotoxy()
{
}
-
+#endif