Use more consistent include guard names

This commit is contained in:
emersion 2017-09-23 10:26:01 +02:00
parent 06ae9e7c9f
commit 427bdb5b55
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
48 changed files with 128 additions and 96 deletions

View file

@ -1,5 +1,5 @@
#ifndef _WLR_BACKEND_INTERFACE_H
#define _WLR_BACKEND_INTERFACE_H
#ifndef WLR_BACKEND_INTERFACE_H
#define WLR_BACKEND_INTERFACE_H
#include <stdbool.h>
#include <wlr/backend.h>

View file

@ -1,5 +1,5 @@
#ifndef _WLR_BACKEND_MULTI_H
#define _WLR_BACKEND_MULTI_H
#ifndef WLR_BACKEND_MULTI_H
#define WLR_BACKEND_MULTI_H
#include <wlr/backend.h>
#include <wlr/backend/session.h>

View file

@ -1,5 +1,5 @@
#ifndef WLR_SESSION_H
#define WLR_SESSION_H
#ifndef WLR_BACKEND_SESSION_H
#define WLR_BACKEND_SESSION_H
#include <stdbool.h>
#include <wayland-server.h>

View file

@ -1,5 +1,5 @@
#ifndef WLR_SESSION_INTERFACE_H
#define WLR_SESSION_INTERFACE_H
#ifndef WLR_BACKEND_SESSION_INTERFACE_H
#define WLR_BACKEND_SESSION_INTERFACE_H
#include <wlr/backend/session.h>