blob: 038460221bce90adc96eb9337ce2955aeaf66c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#include <sys/types.h>
#include <sys/uio.h>
#include <skalibs/allreadwrite.h>
#include <skalibs/buffer.h>
ssize_t buffer_flush1read (int fd, struct iovec const *v, unsigned int n)
{
if (!buffer_flush(buffer_1)) return -1 ;
return fd_readv(fd, v, n) ;
}
|