]> git.proxmox.com Git - wasi-libc.git/blame - libc-bottom-half/headers/public/__struct_msghdr.h
__wasi_thread_spawn: stop truncating the return value (#353)
[wasi-libc.git] / libc-bottom-half / headers / public / __struct_msghdr.h
CommitLineData
320054e8
DG
1#ifndef __wasilibc___struct_msghdr_h
2#define __wasilibc___struct_msghdr_h
3
4#include <__typedef_socklen_t.h>
5
6struct msghdr {
7 void *msg_name;
8 socklen_t msg_namelen;
9 struct iovec *msg_iov;
10 int msg_iovlen;
11 void *msg_control;
12 socklen_t msg_controllen;
13 int msg_flags;
14};
15
16#endif