ttymsg.c:

Corrected return type of writev(2).
This commit is contained in:
gdr-ftp 1999-01-11 01:24:47 +00:00
parent 66eeae13e0
commit 2b00b1d41a
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ ttymsg(struct iovec *iov, int iovcnt, char *line, int tmout)
}
#ifdef __GNO__
static size_t writev(int fd, struct iovec *iov, int iovcnt)
ssize_t writev(int fd, struct iovec *iov, int iovcnt)
{
int i;
size_t size, total_size = 0;