diff options
| author | Jason Evans <jasone@FreeBSD.org> | 2000-01-12 09:23:48 +0000 | 
|---|---|---|
| committer | Jason Evans <jasone@FreeBSD.org> | 2000-01-12 09:23:48 +0000 | 
| commit | 929273386f6e688c008b15fd24932df2ed7e7172 (patch) | |
| tree | b3edfb3b0b6bdadce3b9cf019cabf1218f08038d /lib/libc/gen/termios.c | |
| parent | f3d5d34b459fcd295a618227c37e2bacae1cdf67 (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen/termios.c')
| -rw-r--r-- | lib/libc/gen/termios.c | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/libc/gen/termios.c b/lib/libc/gen/termios.c index 5264a2dfceb9..70ac8f04f7c7 100644 --- a/lib/libc/gen/termios.c +++ b/lib/libc/gen/termios.c @@ -29,6 +29,8 @@   * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY   * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF   * SUCH DAMAGE. + * + * $FreeBSD$   */  #if defined(LIBC_SCCS) && !defined(lint) @@ -187,13 +189,15 @@ tcsendbreak(fd, len)  }  int -tcdrain(fd) +__tcdrain(fd)  	int fd;  { -  	return (ioctl(fd, TIOCDRAIN, 0));  } +__weak_reference(__tcdrain, _libc_tcdrain); +__weak_reference(_libc_tcdrain, tcdrain); +  int  tcflush(fd, which)  	int fd, which; @@ -234,7 +238,8 @@ tcflow(fd, action)  		if (tcgetattr(fd, &term) == -1)  			return (-1);  		c = term.c_cc[action == TCIOFF ? VSTOP : VSTART]; -		if (c != _POSIX_VDISABLE && write(fd, &c, sizeof(c)) == -1) +		if (c != _POSIX_VDISABLE && _libc_write(fd, &c, sizeof(c)) == +		    -1)  			return (-1);  		return (0);  	default:  | 
