diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-16 15:02:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-16 15:02:01 +0000 |
commit | 3b1e82407a02aed6319c6686c5b06c2051a20cca (patch) | |
tree | 1fe2e797e308c33cf011da5d9cb3a0f4cce4e198 /libc | |
parent | aa57f51ec0f5e7df402cdb9299c623d6a7fd4551 (diff) |
Fix from "Gerhard Uttenthaler" <uttenthaler@ems-wuensche.com> so
that cfsetspeed would actually be compiled in.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/termios/termios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/termios/termios.c b/libc/termios/termios.c index 08bf0991b..c6d74f2b3 100644 --- a/libc/termios/termios.c +++ b/libc/termios/termios.c @@ -184,7 +184,7 @@ int cfsetispeed ( struct termios *termios_p, speed_t speed) } #endif -#ifdef L_tcspeed +#ifdef L_cfsetspeed struct speed_struct { speed_t value; |