http-server.c

Basic HTTP server and router in C
git clone git://git.finwo.net/lib/http-server.c
Log | Files | Refs | README

commit 80891c50d72d084f55426cabf76b057591bc7b63
parent 2cc5e66dc0c5f3f121106b445578ec49fadb1a2f
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Mon, 25 Dec 2023 19:21:01 +0100

Support usleep on osx

Diffstat:
Msrc/http-server.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/http-server.c b/src/http-server.c @@ -2,6 +2,7 @@ #include <windows.h> #else #include <time.h> +#include <unistd.h> #endif #include <stdbool.h>