fnet.c

Simple C networking library
git clone git://git.finwo.net/lib/fnet.c
Log | Files | Refs | README

commit 5b468c781eb7be444b78276b615920dd4dd55f79
parent 071024513e40f76567a3027df26b9907363d0561
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Sun, 22 Oct 2023 20:25:04 +0200

Split includes in test.c as well

Diffstat:
Mtest.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/test.c b/test.c @@ -2,7 +2,12 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> + +#ifdef _WIN32 +#include <windows.h> +#else #include <unistd.h> +#endif #include "fnet.h"