Make some simple fixes

This commit is contained in:
Justine Tunney 2023-02-03 02:09:15 -08:00
parent cf19e3e46a
commit 4b8874ceb9
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
2 changed files with 3 additions and 8 deletions

View file

@ -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);