From 60ab7b13b77a5bf2f631738dab30cdcc07cc7787 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Fri, 12 Oct 2018 10:16:06 +0000 Subject: [PATCH] Cleanup: Corrected include guards --- avl/avl.h | 4 ++-- httpp/encoding.h | 4 ++-- httpp/httpp.h | 4 ++-- log/log.h | 4 ++-- net/resolver.h | 4 ++-- net/sock.h | 4 ++-- thread/thread.h | 4 ++-- timing/timing.h | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/avl/avl.h b/avl/avl.h index 6a61413..a86ac6a 100644 --- a/avl/avl.h +++ b/avl/avl.h @@ -4,8 +4,8 @@ /* $Id: avl.h,v 1.7 2003/07/07 01:10:14 brendan Exp $ */ -#ifndef __AVL_H -#define __AVL_H +#ifndef _LIBIGLOO__AVL_H_ +#define _LIBIGLOO__AVL_H_ #ifdef __cplusplus extern "C" { diff --git a/httpp/encoding.h b/httpp/encoding.h index 872f96f..5f77173 100644 --- a/httpp/encoding.h +++ b/httpp/encoding.h @@ -22,8 +22,8 @@ ** */ -#ifndef __ENCODING_H -#define __ENCODING_H +#ifndef _LIBIGLOO__ENCODING_H_ +#define _LIBIGLOO__ENCODING_H_ #include diff --git a/httpp/httpp.h b/httpp/httpp.h index 25c091a..5fd4a2b 100644 --- a/httpp/httpp.h +++ b/httpp/httpp.h @@ -24,8 +24,8 @@ ** */ -#ifndef __HTTPP_H -#define __HTTPP_H +#ifndef _LIBIGLOO__HTTPP_H_ +#define _LIBIGLOO__HTTPP_H_ #include diff --git a/log/log.h b/log/log.h index b5fd187..62063b2 100644 --- a/log/log.h +++ b/log/log.h @@ -26,8 +26,8 @@ ** */ -#ifndef __LOG_H__ -#define __LOG_H__ +#ifndef _LIBIGLOO__LOG_H_ +#define _LIBIGLOO__LOG_H_ #include diff --git a/net/resolver.h b/net/resolver.h index 23010e1..828db71 100644 --- a/net/resolver.h +++ b/net/resolver.h @@ -23,8 +23,8 @@ * */ -#ifndef __RESOLVER_H -#define __RESOLVER_H +#ifndef _LIBIGLOO__RESOLVER_H_ +#define _LIBIGLOO__RESOLVER_H_ /* diff --git a/net/sock.h b/net/sock.h index 212f86b..5448940 100644 --- a/net/sock.h +++ b/net/sock.h @@ -24,8 +24,8 @@ * */ -#ifndef __SOCK_H -#define __SOCK_H +#ifndef _LIBIGLOO__SOCK_H_ +#define _LIBIGLOO__SOCK_H_ #include diff --git a/thread/thread.h b/thread/thread.h index 9dfd222..d4a675d 100644 --- a/thread/thread.h +++ b/thread/thread.h @@ -23,8 +23,8 @@ * */ -#ifndef __THREAD_H__ -#define __THREAD_H__ +#ifndef _LIBIGLOO__THREAD_H_ +#define _LIBIGLOO__THREAD_H_ #include diff --git a/timing/timing.h b/timing/timing.h index 55868fd..8b8b01c 100644 --- a/timing/timing.h +++ b/timing/timing.h @@ -24,8 +24,8 @@ * */ -#ifndef __TIMING_H__ -#define __TIMING_H__ +#ifndef _LIBIGLOO__TIMING_H_ +#define _LIBIGLOO__TIMING_H_ #include #ifdef HAVE_INTTYPES_H