mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
16 lines
262 B
C
16 lines
262 B
C
|
#include "wrap.h"
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
|
||
|
int
|
||
|
m3_connect(int s, const struct sockaddr *name, int namelen)
|
||
|
{
|
||
|
int result;
|
||
|
|
||
|
ENTER_CRITICAL;
|
||
|
MAKE_READABLE(name);
|
||
|
result = connect(s, name, namelen);
|
||
|
EXIT_CRITICAL;
|
||
|
return result;
|
||
|
}
|