source: trunk/minix/lib/ip/recv.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 176 bytes
Line 
1#include <stdlib.h>
2#include <sys/socket.h>
3
4ssize_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.