petidomo.h: don't use reserved double-underscore prefix

This commit is contained in:
Peter Simons 2013-02-09 20:14:10 +01:00
parent 23719d36a3
commit 6e37fb864d

View File

@ -17,15 +17,15 @@
* this program. If not, see <http://www.gnu.org/licenses/>. * this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef __PETIDOMO_H__ #ifndef PETIDOMO_H_INCLUDED
#define __PETIDOMO_H__ 1 #define PETIDOMO_H_INCLUDED 1
#include <config.h> #include <config.h>
/********** Useful defines and declarations **********/ /********** Useful defines and declarations **********/
#ifndef __HAVE_DEFINED_BOOL__ #ifndef PETIDOMO_HAS_DEFINED_BOOL
# define __HAVE_DEFINED_BOOL__ 1 # define PETIDOMO_HAS_DEFINED_BOOL 1
typedef int bool; typedef int bool;
#endif #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 is_address_on_list(const char* file, const char* address);
int add_address(const char* file, const char* address); int add_address(const char* file, const char* address);
#endif /* !defined(__PETIDOMO_H__) */ #endif /* !defined(PETIDOMO_H_INCLUDED) */