mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -04:00
tllist: is now an external "library", so use <> includes
This commit is contained in:
parent
dd7058d368
commit
29cccadd1d
4 changed files with 7 additions and 4 deletions
3
fdm.c
3
fdm.c
|
|
@ -7,10 +7,11 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <sys/epoll.h>
|
#include <sys/epoll.h>
|
||||||
|
|
||||||
|
#include <tllist.h>
|
||||||
|
|
||||||
#define LOG_MODULE "fdm"
|
#define LOG_MODULE "fdm"
|
||||||
#define LOG_ENABLE_DBG 0
|
#define LOG_ENABLE_DBG 0
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "tllist.h"
|
|
||||||
|
|
||||||
struct handler {
|
struct handler {
|
||||||
int fd;
|
int fd;
|
||||||
|
|
|
||||||
3
server.c
3
server.c
|
|
@ -9,13 +9,14 @@
|
||||||
|
|
||||||
#include <linux/un.h>
|
#include <linux/un.h>
|
||||||
|
|
||||||
|
#include <tllist.h>
|
||||||
|
|
||||||
#define LOG_MODULE "server"
|
#define LOG_MODULE "server"
|
||||||
#define LOG_ENABLE_DBG 0
|
#define LOG_ENABLE_DBG 0
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
#include "shm.h"
|
#include "shm.h"
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "tllist.h"
|
|
||||||
#include "wayland.h"
|
#include "wayland.h"
|
||||||
|
|
||||||
struct client;
|
struct client;
|
||||||
|
|
|
||||||
3
shm.c
3
shm.c
|
|
@ -9,11 +9,12 @@
|
||||||
|
|
||||||
#include <pixman.h>
|
#include <pixman.h>
|
||||||
|
|
||||||
|
#include <tllist.h>
|
||||||
|
|
||||||
#define LOG_MODULE "shm"
|
#define LOG_MODULE "shm"
|
||||||
#define LOG_ENABLE_DBG 0
|
#define LOG_ENABLE_DBG 0
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "stride.h"
|
#include "stride.h"
|
||||||
#include "tllist.h"
|
|
||||||
|
|
||||||
static tll(struct buffer) buffers;
|
static tll(struct buffer) buffers;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
#include <xdg-shell.h>
|
#include <xdg-shell.h>
|
||||||
#include <xkbcommon/xkbcommon-compose.h>
|
#include <xkbcommon/xkbcommon-compose.h>
|
||||||
|
|
||||||
|
#include <tllist.h>
|
||||||
#include <xdg-output-unstable-v1.h>
|
#include <xdg-output-unstable-v1.h>
|
||||||
#include <xdg-decoration-unstable-v1.h>
|
#include <xdg-decoration-unstable-v1.h>
|
||||||
|
|
||||||
|
|
@ -19,7 +20,6 @@
|
||||||
#define LOG_ENABLE_DBG 0
|
#define LOG_ENABLE_DBG 0
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
#include "tllist.h"
|
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "render.h"
|
#include "render.h"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue