From 29cccadd1d9c372b3861bb0c285628bb374da2ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 17 Nov 2019 19:19:55 +0100 Subject: [PATCH] tllist: is now an external "library", so use <> includes --- fdm.c | 3 ++- server.c | 3 ++- shm.c | 3 ++- wayland.c | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/fdm.c b/fdm.c index 72e32328..a7bb6b36 100644 --- a/fdm.c +++ b/fdm.c @@ -7,10 +7,11 @@ #include #include +#include + #define LOG_MODULE "fdm" #define LOG_ENABLE_DBG 0 #include "log.h" -#include "tllist.h" struct handler { int fd; diff --git a/server.c b/server.c index c59660e2..bb38a6dd 100644 --- a/server.c +++ b/server.c @@ -9,13 +9,14 @@ #include +#include + #define LOG_MODULE "server" #define LOG_ENABLE_DBG 0 #include "log.h" #include "shm.h" #include "terminal.h" -#include "tllist.h" #include "wayland.h" struct client; diff --git a/shm.c b/shm.c index 356288bc..975a888a 100644 --- a/shm.c +++ b/shm.c @@ -9,11 +9,12 @@ #include +#include + #define LOG_MODULE "shm" #define LOG_ENABLE_DBG 0 #include "log.h" #include "stride.h" -#include "tllist.h" static tll(struct buffer) buffers; diff --git a/wayland.c b/wayland.c index 723872c7..6c921b21 100644 --- a/wayland.c +++ b/wayland.c @@ -12,6 +12,7 @@ #include #include +#include #include #include @@ -19,7 +20,6 @@ #define LOG_ENABLE_DBG 0 #include "log.h" -#include "tllist.h" #include "terminal.h" #include "input.h" #include "render.h"