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

16 lines
256 B
C
Raw Normal View History

#include "wrap.h"
#include <sys/types.h>
#include <sys/socket.h>
int
m3_bind(int s, const struct sockaddr *name, int namelen)
{
int result;
ENTER_CRITICAL;
MAKE_READABLE(name);
result = bind(s, name, namelen);
EXIT_CRITICAL;
return result;
}