mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-26 05:13:58 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
13 lines
182 B
C
13 lines
182 B
C
#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
|