diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-13 09:47:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-13 09:47:04 +0000 |
commit | 3ab0557e5a3a81b5202334142326dd2e5edc5d28 (patch) | |
tree | fbc4cb8ae1dd73c49fdf4f898d0fb329e8551164 /libc/termios/termios.c | |
parent | 80e6061ac5deca193759b979d34906bfc9b857ef (diff) |
A number of naming updates in preparation for adding in
proper threading. Most of this is from Stefan Soucek,
with additions and changes as needed from me.
Diffstat (limited to 'libc/termios/termios.c')
-rw-r--r-- | libc/termios/termios.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/termios/termios.c b/libc/termios/termios.c index 24448c0e4..08bf0991b 100644 --- a/libc/termios/termios.c +++ b/libc/termios/termios.c @@ -42,11 +42,12 @@ int isatty(int fd) #ifdef L_tcdrain /* Wait for pending output to be written on FD. */ -int tcdrain (int fd) +int __libc_tcdrain (int fd) { /* With an argument of 1, TCSBRK waits for the output to drain. */ return ioctl(fd, TCSBRK, 1); } +weak_alias(__libc_tcdrain, tcdrain) #endif #ifdef L_tcflow |