diff options
author | Christopher Faylor <me@cgf.cx> | 2002-11-07 03:48:01 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-11-07 03:48:01 +0000 |
commit | 840948e7e4218bca24da5ff0020d84cd61873612 (patch) | |
tree | 8b819ee97f3ee1f835716c71647ac76f31a2dd90 | |
parent | c2389a69a0e87d3ef8ac02780947488454205d6b (diff) | |
download | newlib-unlabeled-1.65.4.zip newlib-unlabeled-1.65.4.tar.gz newlib-unlabeled-1.65.4.tar.bz2 |
* include/cygwin/version.h: Bump API minor number for below export.github/unlabeled-1.65.4unlabeled-1.65.4
* cygwin.din (pututline): New exported function.
* syscalls.cc (login): Use pututiline().
(setutent): Open utmp as read/write.
(endutent): Check if utmp file is open.
(utmpname): call endutent() to close current utmp file.
(getutid): Enable all cases, use strncmp() to compare ut_id fields.
(pututline): New.
* tty.cc (create_tty_master): Set ut_pid to current pid.
* fhandler.h (fhandler_serial::vmin_): Declare as size_t.
* fhandler_serial.cc (fhandler_serial::raw_read): Use correct type for
minchars.
(fhandler_serial::ioctl): Set errno if the ClearCommError fails.
(fhandler_serial::tcsetattr): Use correct value for vmin_.
(fhandler_serial::tcgetattr): Ditto.
* fhandler_socket.cc (fhandler_socket::recvmsg): Call if from == NULL
WSARecvFrom with fromlen = NULL.
-rw-r--r-- | winsup/cygwin/cygwin.din | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index a9c009a..58158f9 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -621,6 +621,8 @@ putchar_unlocked _putchar_unlocked = putchar_unlocked puts _puts = puts +pututline +_pututline = pututline putw _putw = putw qsort |