include: add missing header dependencies

Ensure that headers compile correctly regardless of include order.
This commit is contained in:
John Lindgren 2025-07-28 01:03:22 -04:00 committed by Johan Malm
parent 69b9122194
commit c9b576982d
3 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,8 @@
#ifndef LABWC_GRAPHIC_HELPERS_H
#define LABWC_GRAPHIC_HELPERS_H
#include <stdbool.h>
#include <stdint.h>
#include <cairo.h>
struct wlr_fbox;

View file

@ -2,7 +2,7 @@
#ifndef LABWC_TOUCH_CONFIG_H
#define LABWC_TOUCH_CONFIG_H
#include <stdint.h>
#include <stdbool.h>
#include <wayland-util.h>
struct touch_config_entry {

View file

@ -4,6 +4,7 @@
#include <wayland-server-core.h>
#include <wlr/types/wlr_tablet_v2.h>
#include "config/tablet-tool.h"
struct seat;
struct wlr_device;