aboutsummaryrefslogtreecommitdiff
path: root/src/network/sendto.c
blob: e203c0b52a5170c87300e32ff1308284a0d11856 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <sys/socket.h>
#include "syscall.h"

ssize_t sendto(int fd, const void *buf, size_t len, int flags, const struct sockaddr *addr, socklen_t alen)
{
	return socketcall_cp(sendto, fd, buf, len, flags, addr, alen);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif