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
sys/stat.h: fix typo in statx member name stx_dio_offset_align
[musl.git]
/
src
/
network
/
sendto.c
blob
c598797c72b6c315eb15fbe6f4c0935c09bb07ce
1
#include <sys/socket.h>
2
#include
"syscall.h"
3
4
ssize_t
sendto
(
int
fd
,
const void
*
buf
,
size_t
len
,
int
flags
,
const struct
sockaddr
*
addr
,
socklen_t alen
)
5
{
6
return
socketcall_cp
(
sendto
,
fd
,
buf
,
len
,
flags
,
addr
,
alen
);
7
}