repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix use of uninitialized pointer in gettext core
[musl.git]
/
src
/
network
/
recvfrom.c
blob
436f3447cfb8782c0ea6a8fa63e1f56ecdae472d
1
#include <sys/socket.h>
2
#include
"syscall.h"
3
#include
"libc.h"
4
5
ssize_t
recvfrom
(
int
fd
,
void
*
restrict buf
,
size_t
len
,
int
flags
,
struct
sockaddr
*
restrict addr
,
socklen_t
*
restrict alen
)
6
{
7
return
socketcall_cp
(
recvfrom
,
fd
,
buf
,
len
,
flags
,
addr
,
alen
);
8
}