summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/termios.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-01-19 22:22:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-01-19 22:22:25 +0000
commit4dc0fd685bf9892cdeb93bebc8d734a68dd95311 (patch)
treea93906b2ad9159f387ee315fcbc8ce30e498d552 /c/src/lib/libc/termios.c
parentRalf Corsepius reported a number of missing CVS Id's: (diff)
downloadrtems-4dc0fd685bf9892cdeb93bebc8d734a68dd95311.tar.bz2
Patch from Eric Norum:
With this in place, it is possible to fdopen a TCP stream socket and getc/fprintf/etc. on the STDIO stream!
Diffstat (limited to '')
-rw-r--r--c/src/lib/libc/termios.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/c/src/lib/libc/termios.c b/c/src/lib/libc/termios.c
index 8512fd6e14..85e171bd16 100644
--- a/c/src/lib/libc/termios.c
+++ b/c/src/lib/libc/termios.c
@@ -113,6 +113,7 @@ struct rtems_termios_tty {
int (*read)(int minor);
int (*write)(int minor, const char *buf, int len);
};
+
static struct rtems_termios_tty *ttyHead, *ttyTail;
static rtems_id ttyMutex;