diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2002-03-26 01:36:08 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2002-03-26 01:36:08 +0000 |
commit | 8071fb360df466a85940c220e157f03ef6cac498 (patch) | |
tree | a8448d26942e3dfef4b300eb0b7a12092f40715a /lib/libc/termios | |
parent | e5e8c5833167de47e2fc6506ffd04f51a009b220 (diff) |
Fix variable name. PR2492
Diffstat (limited to 'lib/libc/termios')
-rw-r--r-- | lib/libc/termios/tcsetattr.3 | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libc/termios/tcsetattr.3 b/lib/libc/termios/tcsetattr.3 index 1c4fa677622..3b348ffebc3 100644 --- a/lib/libc/termios/tcsetattr.3 +++ b/lib/libc/termios/tcsetattr.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tcsetattr.3,v 1.10 2000/04/15 02:15:25 aaron Exp $ +.\" $OpenBSD: tcsetattr.3,v 1.11 2002/03/26 01:36:07 hugh Exp $ .\" .\" Copyright (c) 1991 The Regents of the University of California. .\" All rights reserved. @@ -47,21 +47,21 @@ .Sh SYNOPSIS .Fd #include <termios.h> .Ft speed_t -.Fn cfgetispeed "const struct termios *t" +.Fn cfgetispeed "const struct termios *tp" .Ft int -.Fn cfsetispeed "struct termios *t" "speed_t speed" +.Fn cfsetispeed "struct termios *tp" "speed_t speed" .Ft speed_t -.Fn cfgetospeed "const struct termios *t" +.Fn cfgetospeed "const struct termios *tp" .Ft int -.Fn cfsetospeed "struct termios *t" "speed_t speed" +.Fn cfsetospeed "struct termios *tp" "speed_t speed" .Ft int -.Fn cfsetspeed "struct termios *t" "speed_t speed" +.Fn cfsetspeed "struct termios *tp" "speed_t speed" .Ft void -.Fn cfmakeraw "struct termios *t" +.Fn cfmakeraw "struct termios *tp" .Ft int -.Fn tcgetattr "int fd" "struct termios *t" +.Fn tcgetattr "int fd" "struct termios *tp" .Ft int -.Fn tcsetattr "int fd" "int action" "const struct termios *t" +.Fn tcsetattr "int fd" "int action" "const struct termios *tp" .Sh DESCRIPTION The .Fn cfmakeraw , |