aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-07-21 01:24:10 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-07-21 01:40:55 +0200
commite49f1da7aed6894c8893cf29c33c4ca839d74976 (patch)
tree54fdbf665a9ec8adb5da089e8e305028ff10dea5 /main.c
parent6e5c091d8f871383af0332bf80943f69889c0da9 (diff)
downloadslcl-e49f1da7aed6894c8893cf29c33c4ca839d74976.tar.gz
Adapt to slweb's include paths
slweb puts its header files into its own directory in order to avoid potential name clashing.
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 762db88..45da68f 100644
--- a/main.c
+++ b/main.c
@@ -2,12 +2,12 @@
#include "auth.h"
#include "cftw.h"
-#include "handler.h"
#include "hex.h"
-#include "http.h"
#include "page.h"
#include "style.h"
-#include "wildcard_cmp.h"
+#include <slweb/handler.h>
+#include <slweb/http.h>
+#include <slweb/wildcard_cmp.h>
#include <openssl/err.h>
#include <openssl/rand.h>
#include <dynstr.h>