about summary refs log tree commit diff
path: root/socket/sendto.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/sendto.c')
-rw-r--r--socket/sendto.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/socket/sendto.c b/socket/sendto.c
index de2e523a51..0b9e4d2ce0 100644
--- a/socket/sendto.c
+++ b/socket/sendto.c
@@ -21,13 +21,8 @@
 /* Send N bytes of BUF on socket FD to peer at address ADDR (which is
    ADDR_LEN bytes long).  Returns the number sent, or -1 for errors.  */
 ssize_t
-__sendto (fd, buf, n, flags, addr, addr_len)
-     int fd;
-     const __ptr_t buf;
-     size_t n;
-     int flags;
-     __CONST_SOCKADDR_ARG addr;
-     socklen_t addr_len;
+__sendto (int fd, const __ptr_t buf, size_t n, int flags,
+	  __CONST_SOCKADDR_ARG addr, socklen_t addr_len)
 {
   __set_errno (ENOSYS);
   return -1;