mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-30 16:28:30 +00:00
Make some simple fixes
This commit is contained in:
parent
cf19e3e46a
commit
4b8874ceb9
2 changed files with 3 additions and 8 deletions
|
@ -8,11 +8,10 @@ struct msghdr { /* Linux+NT ABI */
|
|||
void *msg_name; /* optional address */
|
||||
uint32_t msg_namelen; /* size of msg_name */
|
||||
struct iovec *msg_iov; /* scatter/gather array */
|
||||
int msg_iovlen; /* # elements in msg_iov */
|
||||
uint64_t msg_iovlen; /* # elements in msg_iov */
|
||||
void *msg_control; /* ancillary data c. cmsghdr */
|
||||
uint32_t msg_controllen; /* ancillary data buffer len */
|
||||
uint32_t __pad0; /* reconcile abi */
|
||||
int msg_flags; /* MSG_XXX */
|
||||
uint64_t msg_controllen; /* ancillary data buffer len */
|
||||
uint32_t msg_flags; /* MSG_XXX */
|
||||
};
|
||||
|
||||
ssize_t recvmsg(int, struct msghdr *, int);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue