Fix __sendmmsg prototype guards
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Thu, 11 Dec 2014 19:54:22 +0000 (14:54 -0500)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Thu, 11 Dec 2014 19:55:44 +0000 (14:55 -0500)
Add __USE_GNU guards on 'socket/sys/socket.h' __sendmmsg prototype.

ChangeLog
include/sys/socket.h

index 31a63e3..61ac73d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 9caf1bb..99f6036 100644 (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.  */