summaryrefslogtreecommitdiff
path: root/socket/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/send.c')
-rw-r--r--socket/send.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/socket/send.c b/socket/send.c
index 4ecb332e9e..cbe3b853b8 100644
--- a/socket/send.c
+++ b/socket/send.c
@@ -20,11 +20,7 @@
/* Send N bytes of BUF to socket FD. Returns the number sent or -1. */
ssize_t
-__send (fd, buf, n, flags)
- int fd;
- const __ptr_t buf;
- size_t n;
- int flags;
+__send (int fd, const __ptr_t buf, size_t n, int flags)
{
__set_errno (ENOSYS);
return -1;