summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2008-09-12 22:32:07 +0000
committerChristopher Faylor <me@cgf.cx>2008-09-12 22:32:07 +0000
commit175742d8c818ff31b06174494a77b30e5008eb83 (patch)
treedfbf349b29de835555f6ded1db161ff2e776617c /winsup/cygwin/include
parent7df9b8ba8e832a14084b60c3daa035bcba5c5a8d (diff)
downloadcygnal-175742d8c818ff31b06174494a77b30e5008eb83.tar.gz
cygnal-175742d8c818ff31b06174494a77b30e5008eb83.tar.bz2
cygnal-175742d8c818ff31b06174494a77b30e5008eb83.zip
* Makefile.in: Add -c option which is now removed from COMPILE_C*.
* cygwin.din (cfmakeraw): Export. * termios.cc (cfmakeraw): Implement. * include/sys/termios.h (cfmakeraw): Declare. * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r--winsup/cygwin/include/cygwin/version.h3
-rw-r--r--winsup/cygwin/include/sys/termios.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h
index 23836a537..268f99db7 100644
--- a/winsup/cygwin/include/cygwin/version.h
+++ b/winsup/cygwin/include/cygwin/version.h
@@ -334,12 +334,13 @@ details. */
185: Export futimens, utimensat.
186: Remove ancient V8 regexp functions. Also eliminate old crt0 interface
which provided its own user_data structure.
+ 187: Export cfmakeraw.
*/
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
#define CYGWIN_VERSION_API_MAJOR 0
-#define CYGWIN_VERSION_API_MINOR 186
+#define CYGWIN_VERSION_API_MINOR 187
/* There is also a compatibity version number associated with the
shared memory regions. It is incremented when incompatible
diff --git a/winsup/cygwin/include/sys/termios.h b/winsup/cygwin/include/sys/termios.h
index 057146966..6648bc369 100644
--- a/winsup/cygwin/include/sys/termios.h
+++ b/winsup/cygwin/include/sys/termios.h
@@ -330,6 +330,7 @@ int tcsendbreak (int, int);
int tcdrain (int);
int tcflush (int, int);
int tcflow (int, int);
+void cfmakeraw (struct termios *);
int cfsetispeed (struct termios *, speed_t);
int cfsetospeed (struct termios *, speed_t);