From 8c3ba33ced08b211db0cd5f81675bdf62f55acc7 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 20 Jul 2023 23:47:33 +0200 Subject: Move header files to subdirectory Since slweb is meant as a library, it is advisable to keep public header files under their own directory in order to avoid name clashing i.e., #include "something.h" Now becomes: #include "slweb/something.h" --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'http.c') diff --git a/http.c b/http.c index cb28ee5..df54c98 100644 --- a/http.c +++ b/http.c @@ -1,6 +1,6 @@ #define _POSIX_C_SOURCE 200809L -#include "http.h" +#include "slweb/http.h" #include #include #include -- cgit v1.2.3