From 6e37fb864d1057fa8a14368b1c3c68c43697666b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 9 Feb 2013 20:14:10 +0100 Subject: [PATCH] petidomo.h: don't use reserved double-underscore prefix --- petidomo.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/petidomo.h b/petidomo.h index bd9c1ba..d503de0 100644 --- a/petidomo.h +++ b/petidomo.h @@ -17,15 +17,15 @@ * this program. If not, see . */ -#ifndef __PETIDOMO_H__ -#define __PETIDOMO_H__ 1 +#ifndef PETIDOMO_H_INCLUDED +#define PETIDOMO_H_INCLUDED 1 #include /********** Useful defines and declarations **********/ -#ifndef __HAVE_DEFINED_BOOL__ -# define __HAVE_DEFINED_BOOL__ 1 +#ifndef PETIDOMO_HAS_DEFINED_BOOL +# define PETIDOMO_HAS_DEFINED_BOOL 1 typedef int bool; #endif @@ -267,4 +267,4 @@ char* queue_command(const struct Mail* mail, const char* command); int is_address_on_list(const char* file, const char* address); int add_address(const char* file, const char* address); -#endif /* !defined(__PETIDOMO_H__) */ +#endif /* !defined(PETIDOMO_H_INCLUDED) */