1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/lang/modula-3-socks/files/sendto.c

18 lines
335 B
C
Raw Normal View History

#include "wrap.h"
#include <sys/types.h>
#include <sys/socket.h>
ssize_t
m3_sendto(int s, const void *msg, size_t len, int flags,
const struct sockaddr *to, int tolen)
{
int result;
ENTER_CRITICAL;
MAKE_READABLE(msg);
MAKE_READABLE(to);
result = sendto(s, msg, len, flags, to, tolen);
EXIT_CRITICAL;
return result;
}