repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. pci driver now returns devices, even when they have been pci_reserve()d
[minix3.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