repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Intel Pro/1000 driver written by Niek Linnenbank.
[minix.git]
/
lib
/
ip
/
recv.c
blob
6806ef2b242c3c911fa93236e846993268e00ade
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