From b3f3dfb253e6507383609e54aa30f0edd617b46c Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Sun, 8 Apr 2012 22:55:02 +0200 Subject: [PATCH] Adjust include guards. --- src/array.h | 4 ++-- src/class.h | 4 ++-- src/corefw.h | 4 ++-- src/object.h | 4 ++-- src/range.h | 4 ++-- src/string.h | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/array.h b/src/array.h index 6a1c3e4..3bc871d 100644 --- a/src/array.h +++ b/src/array.h @@ -24,8 +24,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __CFWARRAY_H__ -#define __CFWARRAY_H__ +#ifndef __COREFW_ARRAY_H__ +#define __COREFW_ARRAY_H__ #include "class.h" diff --git a/src/class.h b/src/class.h index 7b6c9fc..fc021ff 100644 --- a/src/class.h +++ b/src/class.h @@ -24,8 +24,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __CFWCLASS_H__ -#define __CFWCLASS_H__ +#ifndef __COREFW_CLASS_H__ +#define __COREFW_CLASS_H__ #include #include diff --git a/src/corefw.h b/src/corefw.h index c7c0c60..ec25c1b 100644 --- a/src/corefw.h +++ b/src/corefw.h @@ -1,5 +1,5 @@ -#ifndef __COREFW_H__ -#define __COREFW_H__ +#ifndef __COREFW_COREFW_H__ +#define __COREFW_COREFW_H__ #include "class.h" #include "object.h" diff --git a/src/object.h b/src/object.h index d3bd6d7..db8778f 100644 --- a/src/object.h +++ b/src/object.h @@ -24,8 +24,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __CFWOBJECT_H__ -#define __CFWOBJECT_H__ +#ifndef __COREFW_OBJECT_H__ +#define __COREFW_OBJECT_H__ #include "class.h" diff --git a/src/range.h b/src/range.h index 1c95737..888d9ad 100644 --- a/src/range.h +++ b/src/range.h @@ -24,8 +24,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __CFWRANGE_H__ -#define __CFW_RANGE_H__ +#ifndef __COREFW_RANGE_H__ +#define __COREFW_RANGE_H__ typedef struct cfw_range_t { size_t start; diff --git a/src/string.h b/src/string.h index 9220614..c53a7db 100644 --- a/src/string.h +++ b/src/string.h @@ -24,8 +24,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __CFWSTRING_H__ -#define __CFWSTRING_H__ +#ifndef __COREFW_STRING_H__ +#define __COREFW_STRING_H__ #include "class.h"