blob: da3e1c7d94ac419f944d76748fd4209d5e84095b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __wasilibc___struct_iovec_h
#define __wasilibc___struct_iovec_h
#define __need_size_t
#include <stddef.h>
struct iovec {
void *iov_base;
size_t iov_len;
};
#endif
|