Skip to content
This repository has been archived by the owner on Aug 14, 2022. It is now read-only.

Commit

Permalink
Remove underscores from import guards
Browse files Browse the repository at this point in the history
Fixes #12.
  • Loading branch information
vilhalmer committed Sep 13, 2020
1 parent d29461b commit cdb230b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions animation.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef _OGURI_ANIMATION_H
#define _OGURI_ANIMATION_H
#ifndef OGURI_ANIMATION_H
#define OGURI_ANIMATION_H

#include <poll.h>
#include <cairo.h>
Expand Down
4 changes: 2 additions & 2 deletions buffers.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef _OGURI_BUFFERS_H
#define _OGURI_BUFFERS_H
#ifndef OGURI_BUFFERS_H
#define OGURI_BUFFERS_H

#define CAIRO_FMT CAIRO_FORMAT_ARGB32

Expand Down
4 changes: 2 additions & 2 deletions config.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef _OGURI_CONFIG_H
#define _OGURI_CONFIG_H
#ifndef OGURI_CONFIG_H
#define OGURI_CONFIG_H

#include <stdbool.h>
#include <stdio.h>
Expand Down
4 changes: 2 additions & 2 deletions oguri.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef _OGURI_H
#define _OGURI_H
#ifndef OGURI_H
#define OGURI_H

#include <poll.h>
#include <sys/un.h>
Expand Down
4 changes: 2 additions & 2 deletions output.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef _OGURI_OUTPUT_H
#define _OGURI_OUTPUT_H
#ifndef OGURI_OUTPUT_H
#define OGURI_OUTPUT_H

#include <wayland-client.h>
#include <cairo.h>
Expand Down

0 comments on commit cdb230b

Please sign in to comment.