diff options
author | H. Peter Anvin <hpa@zytor.com> | 2025-07-12 19:20:03 -0700 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2025-07-20 17:10:59 +0200 |
commit | 5e78997c5662a16a3aaeec8c49b99e30e6e24046 (patch) | |
tree | 83c4fb219d2840d41f444cbf6ed11672e25393d5 | |
parent | 118370fd7880d5f275e189af451c8cc78f7bfcca (diff) | |
download | glibc-5e78997c5662a16a3aaeec8c49b99e30e6e24046.zip glibc-5e78997c5662a16a3aaeec8c49b99e30e6e24046.tar.gz glibc-5e78997c5662a16a3aaeec8c49b99e30e6e24046.tar.bz2 |
termios: manual: remove duplicate cfgetospeed() definition
The function cfsetospeed() is defined twice in the manual. Remove the
one that seems out of place.
Signed-off-by: "H. Peter Anvin" (Intel) <hpa@zytor.com>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
-rw-r--r-- | manual/terminal.texi | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/manual/terminal.texi b/manual/terminal.texi index 8a9259f..ddab258 100644 --- a/manual/terminal.texi +++ b/manual/terminal.texi @@ -1047,16 +1047,6 @@ The @code{speed_t} type is an unsigned integer data type used to represent line speeds. @end deftp -@deftypefun speed_t cfgetospeed (const struct termios *@var{termios-p}) -@standards{POSIX.1, termios.h} -@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} -@c Direct access to a single termios field, except on Linux, where -@c multiple accesses may take place. No worries either way, callers -@c must ensure mutual exclusion on such non-opaque types. -This function returns the output line speed stored in the structure -@code{*@var{termios-p}}. -@end deftypefun - @strong{Portability note:} In @theglibc{}, the functions above accept speeds measured in bits per second as input, and return speed values measured in bits per second. Other libraries require speeds to |