mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 15:36:50 +00:00
13 lines
175 B
C
13 lines
175 B
C
#include <stdio.h>
|
|
#include <sys/select.h>
|
|
|
|
int main(int argc, char **argv, char **envp)
|
|
{
|
|
fd_set readfds;
|
|
int sz;
|
|
|
|
sz = sizeof(readfds);
|
|
printf("%i\n",sz);
|
|
return(0);
|
|
}
|