diff options
Diffstat (limited to 'lib/libc/net/recv.c')
-rw-r--r-- | lib/libc/net/recv.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/net/recv.c b/lib/libc/net/recv.c index 6a584ca..68d3ce5 100644 --- a/lib/libc/net/recv.c +++ b/lib/libc/net/recv.c @@ -40,10 +40,7 @@ __FBSDID("$FreeBSD$"); #include <stddef.h> ssize_t -recv(s, buf, len, flags) - int s, flags; - size_t len; - void *buf; +recv(int s, void *buf, size_t len, int flags) { /* * POSIX says recv() shall be a cancellation point, so call the |