For /dev/mem, map in memory to be copied to memory's own address space
[minix3.git] / lib / ip / send.c
blob3e12dd90ec399bb7a0c1c58d467a5a217c3d13a2
1 #include <stdlib.h>
2 #include <sys/socket.h>
4 ssize_t send(int socket, const void *buffer, size_t length, int flags)
6 return sendto(socket, buffer, length, flags, NULL, 0);