Files
mars-libowfat/socket/socket_accept4_makenonblocking.c
2025-01-20 18:07:12 +00:00

12 lines
273 B
C

#ifndef __MINGW32__
#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/socket.h>
#endif
#include "windoze.h"
#include <libowfat/socket.h>
int socket_accept4_makenonblocking(int s,char ip[4],uint16 *port) {
return socket_accept4_flags(s,ip,port,SOCKET_NONBLOCK);
}