summaryrefslogtreecommitdiff
path: root/socket/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/send.c')
-rw-r--r--socket/send.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/socket/send.c b/socket/send.c
index 4ecb332e9e..305934d6f2 100644
--- a/socket/send.c
+++ b/socket/send.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -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;