november cleanup & improvements

This commit is contained in:
joonicks
2025-11-10 22:40:37 +01:00
parent 8229117911
commit d3fdf50bdd
16 changed files with 285 additions and 251 deletions

12
config/fdset.c Normal file
View File

@@ -0,0 +1,12 @@
#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);
}