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
For /dev/mem, map in memory to be copied to memory's own address space
[minix3.git]
/
lib
/
ip
/
send.c
blob
3e12dd90ec399bb7a0c1c58d467a5a217c3d13a2
1
#include <stdlib.h>
2
#include <sys/socket.h>
3
4
ssize_t
send
(
int
socket
,
const void
*
buffer
,
size_t
length
,
int
flags
)
5
{
6
return
sendto
(
socket
,
buffer
,
length
,
flags
,
NULL
,
0
);
7
}
8