Use absolute paths in include in header files

To unify the code style of the project, absolute paths have been used in
some places, such as '#include "render/allocator.h"' in
"render/gbm_allocator.h". Except for include the wayland protocol
headers should be consistent.
This commit is contained in:
zccrs 2021-04-06 15:18:16 +08:00 committed by Simon Ser
parent 07a5345aa5
commit e76583f1ad
3 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
#include "wlr/types/wlr_keyboard.h"
#include <wlr/types/wlr_keyboard.h>
void keyboard_key_update(struct wlr_keyboard *keyboard,
struct wlr_event_keyboard_key *event);