Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
include
wasm-wasi-musl
__struct_iovec.h
pretty
plain
permalink
blame
history
•
12 lines
•
182 B
1
#ifndef __wasilibc___struct_iovec_h
2
#define __wasilibc___struct_iovec_h
3
4
#define __need_size_t
5
#include <stddef.h>
6
7
struct iovec {
8
void *iov_base;
9
size_t iov_len;
10
};
11
12
#endif