Fix __sendmmsg prototype guards

Add __USE_GNU guards on 'socket/sys/socket.h' __sendmmsg prototype.
This commit is contained in:
Adhemerval Zanella 2014-12-11 14:54:22 -05:00
parent d0276e18f3
commit 7f29694236
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2014-12-11 Adhemerval Zanella <Azanella@linux.vnet.ibm.com>
* include/sys/socket.h (__sendmmsg): Add __USE_GNU guards on function
prototype.
2014-12-11 Steve Ellcey <sellcey@imgtec.com>
* sysdeps/mips/dl-trampoline.c: Modify switch expression to have

View File

@ -91,9 +91,11 @@ extern ssize_t __libc_sendmsg (int __fd, const struct msghdr *__message,
extern ssize_t __sendmsg (int __fd, const struct msghdr *__message,
int __flags) attribute_hidden;
#ifdef __USE_GNU
extern int __sendmmsg (int __fd, struct mmsghdr *__vmessages,
unsigned int __vlen, int __flags);
libc_hidden_proto (__sendmmsg)
#endif
/* Receive a message as described by MESSAGE from socket FD.
Returns the number of bytes read or -1 for errors. */