Crafter.Build/binlib/wasi-sysroot-28.0/include/wasm32-wasi/__struct_msghdr.h

16 lines
302 B
C
Raw Permalink Normal View History

2025-11-09 18:56:24 +01:00
#ifndef __wasilibc___struct_msghdr_h
#define __wasilibc___struct_msghdr_h
#include <__typedef_socklen_t.h>
struct msghdr {
void *msg_name;
socklen_t msg_namelen;
struct iovec *msg_iov;
int msg_iovlen;
void *msg_control;
socklen_t msg_controllen;
int msg_flags;
};
#endif