adb: use sys/uio.h for iovec operations

readv/writev and struct iovec are declared in sys/uio.h per POSIX.
using it without sys/uio.h is a GNU extension.

ref #10794
cute-signatures
Ariadne Conill 2021-12-10 13:23:56 -06:00
parent 36fcbeed1a
commit 6941f8bd61
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include <errno.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/uio.h>
#include <openssl/pem.h>
#include <openssl/err.h>