• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2014 Cyril Hrubis <chrubis@suse.cz>
4  */
5 
6 #ifndef LAPI_IOVEC_H__
7 #define LAPI_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 /* LAPI_IOVEC_H__ */
21