mirror of
https://github.com/devkitPro/wut.git
synced 2026-06-20 19:42:22 -05:00
- Move the nfds argument restriction to the nsysnet side. - Allow user-defined FD_SETSIZE, since newlib's fd_set allow custom sizes. - Define __socklen_t_defined when socklen_t is typedefed.
8 lines
92 B
C
8 lines
92 B
C
#pragma once
|
|
|
|
#ifndef FD_SETSIZE
|
|
#define FD_SETSIZE 32
|
|
#endif
|
|
|
|
#include_next <sys/select.h>
|