--- a/client/main.c Sat Dec 06 18:17:07 2025 +0100 +++ b/client/main.c Sun Dec 07 10:02:27 2025 +0100 @@ -26,6 +26,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#ifndef _WIN32 + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -202,3 +204,11 @@ return NULL; } + +#else + +int main(int argc, char **argv) { + return 0; +} + +#endif