summaryrefslogtreecommitdiff
path: root/socket/recv.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/recv.c')
-rw-r--r--socket/recv.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/socket/recv.c b/socket/recv.c
index 63a9fcb8b7..3e4232d555 100644
--- a/socket/recv.c
+++ b/socket/recv.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
@@ -21,11 +21,7 @@
/* Read N bytes into BUF from socket FD.
Returns the number read or -1 for errors. */
ssize_t
-__recv (fd, buf, n, flags)
- int fd;
- void *buf;
- size_t n;
- int flags;
+__recv (int fd, void *buf, size_t n, int flags)
{
__set_errno (ENOSYS);
return -1;