1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2014 Cyril Hrubis <chrubis@suse.cz> 4 */ 5 6 #ifndef IOVEC_H 7 #define IOVEC_H 8 9 #include "config.h" 10 11 #if !defined(HAVE_STRUCT_IOVEC) 12 struct iovec { 13 void *iov_base; 14 size_t iov_len; 15 }; 16 #else 17 # include <sys/uio.h> 18 #endif 19 20 #endif /* IOVEC_H */ 21