From e2ee67125e076af9be1f115051c680f6e3b69be5 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 31 May 2017 16:24:32 -0400 Subject: [PATCH] s/wayland.h/types.h/g --- backend/drm/backend.c | 2 +- backend/drm/drm.c | 2 +- example/main.c | 2 +- include/{wayland.h => types.h} | 2 +- include/wlr/{wayland.h => types.h} | 0 types/wlr_output.c | 6 +++--- 6 files changed, 7 insertions(+), 7 deletions(-) rename include/{wayland.h => types.h} (95%) rename include/wlr/{wayland.h => types.h} (100%) diff --git a/backend/drm/backend.c b/backend/drm/backend.c index 39f29da5..a7e736bb 100644 --- a/backend/drm/backend.c +++ b/backend/drm/backend.c @@ -6,7 +6,7 @@ #include #include -#include +#include #include #include "backend.h" diff --git a/backend/drm/drm.c b/backend/drm/drm.c index 088539c8..fa91745f 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -13,7 +13,7 @@ #include #include -#include "wayland.h" +#include "types.h" #include "backend.h" #include "backend/drm/backend.h" #include "backend/drm/drm.h" diff --git a/example/main.c b/example/main.c index 33e77f5e..ae602903 100644 --- a/example/main.c +++ b/example/main.c @@ -6,7 +6,7 @@ #include #include #include -#include +#include #include struct state { diff --git a/include/wayland.h b/include/types.h similarity index 95% rename from include/wayland.h rename to include/types.h index ca79fe33..5513e936 100644 --- a/include/wayland.h +++ b/include/types.h @@ -2,7 +2,7 @@ #define _WLR_WAYLAND_INTERNAL_H #include -#include +#include #include struct wlr_output_impl { diff --git a/include/wlr/wayland.h b/include/wlr/types.h similarity index 100% rename from include/wlr/wayland.h rename to include/wlr/types.h diff --git a/types/wlr_output.c b/types/wlr_output.c index b424aaaf..826404a1 100644 --- a/types/wlr_output.c +++ b/types/wlr_output.c @@ -1,8 +1,8 @@ #include #include -#include "wlr/wayland.h" -#include "wlr/common/list.h" -#include "wayland.h" +#include +#include +#include "types.h" struct wlr_output *wlr_output_create(struct wlr_output_impl *impl, struct wlr_output_state *state) {