diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-16 18:29:52 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-16 18:29:52 +0000 |
commit | 15868f9c3d22fb51b38d7aafd88d95fb2193e734 (patch) | |
tree | fd940f5c633ec4a2d917b91654927c86d28c5f37 /libc/termios | |
parent | 4a15cc847eef004276ddaaae4dbb70dd6fb692e1 (diff) | |
download | uClibc-alpine-15868f9c3d22fb51b38d7aafd88d95fb2193e734.tar.bz2 uClibc-alpine-15868f9c3d22fb51b38d7aafd88d95fb2193e734.tar.xz |
s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now see what libpthread will do ...
Diffstat (limited to 'libc/termios')
-rw-r--r-- | libc/termios/tcdrain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/termios/tcdrain.c b/libc/termios/tcdrain.c index 62bbd9179..e1579060d 100644 --- a/libc/termios/tcdrain.c +++ b/libc/termios/tcdrain.c @@ -27,4 +27,4 @@ int __libc_tcdrain (int fd) { return ioctl(fd, TCSBRK, 1); } -weak_alias (__libc_tcdrain, tcdrain) +strong_alias(__libc_tcdrain,tcdrain) |