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" --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.c') diff --git a/html.c b/html.c index 41ce387..f916ec0 100644 --- a/html.c +++ b/html.c @@ -1,6 +1,6 @@ #define _POSIX_C_SOURCE 200809L -#include "html.h" +#include "slweb/html.h" #include #include #include -- cgit v1.2.3