diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-07-21 01:24:10 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-07-21 01:40:55 +0200 |
| commit | e49f1da7aed6894c8893cf29c33c4ca839d74976 (patch) | |
| tree | 54fdbf665a9ec8adb5da089e8e305028ff10dea5 /page.c | |
| parent | 6e5c091d8f871383af0332bf80943f69889c0da9 (diff) | |
| download | slcl-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 'page.c')
| -rw-r--r-- | page.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ #define _POSIX_C_SOURCE 200809L #include "page.h" -#include "http.h" -#include "html.h" +#include <slweb/html.h> +#include <slweb/http.h> #include <dynstr.h> #include <dirent.h> #include <fcntl.h> |
