Implement Server #1

Merged
eburk merged 8 commits from tcpsrv into master 2024-07-09 21:03:23 +00:00
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 9720e0ce98 - Show all commits

View File

@ -1,3 +1,8 @@
// Needed for sigaction on Linux
#ifdef __linux__
#define _POSIX_C_SOURCE 1
#endif // __linux__
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>