diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2012-11-21 20:13:07 +0000 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2012-11-21 20:13:07 +0000 |
commit | beaf1df02c4666f53180847da8d214e25711b4dd (patch) | |
tree | 5ef6ef5f944af0f1a00d5ea7c459182518bcdb55 /winsup/cygwin/include/sys | |
parent | c342c2eb57e339cc935e400dba2e4c30a9306715 (diff) | |
download | cygnal-beaf1df02c4666f53180847da8d214e25711b4dd.tar.gz cygnal-beaf1df02c4666f53180847da8d214e25711b4dd.tar.bz2 cygnal-beaf1df02c4666f53180847da8d214e25711b4dd.zip |
* termios.cc (cfsetspeed): New function.
* cygwin.din (cfsetspeed): Export.
* posix.sgml (std-bsd): Add cfsetspeed.
* include/sys/termios.h (cfsetspeed): Declare.
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
Diffstat (limited to 'winsup/cygwin/include/sys')
-rw-r--r-- | winsup/cygwin/include/sys/termios.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/include/sys/termios.h b/winsup/cygwin/include/sys/termios.h index 5c20cb95d..f2255420e 100644 --- a/winsup/cygwin/include/sys/termios.h +++ b/winsup/cygwin/include/sys/termios.h @@ -345,6 +345,7 @@ speed_t cfgetispeed(const struct termios *); speed_t cfgetospeed(const struct termios *); int cfsetispeed (struct termios *, speed_t); int cfsetospeed (struct termios *, speed_t); +int cfsetspeed (struct termios *, speed_t); #ifdef __cplusplus } |