also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
8 lines
161 B
C
Vendored
8 lines
161 B
C
Vendored
#include <sys/socket.h>
|
|
#include "syscall.h"
|
|
|
|
int bind(int fd, const struct sockaddr *addr, socklen_t len)
|
|
{
|
|
return socketcall(bind, fd, addr, len, 0, 0, 0);
|
|
}
|