source:
trunk/minix/lib/ip/recv.c@
21
Last change on this file since 21 was 9, checked in by , 13 years ago | |
---|---|
File size: 176 bytes |
Line | |
---|---|
1 | #include <stdlib.h> |
2 | #include <sys/socket.h> |
3 | |
4 | ssize_t recv(int socket, void *buffer, size_t length, int flags) |
5 | { |
6 | return recvfrom(socket, buffer, length, flags, NULL, NULL); |
7 | } |
8 |
Note:
See TracBrowser
for help on using the repository browser.