X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fmytypes.h;h=36860a892626e4cbe9a6c01a21b880e642d928eb;hb=655c589513d20178c1979517320fc446f1a197f6;hp=b716c2e7f42b710305146dcbf2680315a4ed7510;hpb=d7d7b7b91dd75cec636fc144da7e27eed860f971;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/mytypes.h b/src/src/mytypes.h index b716c2e7f..36860a892 100644 --- a/src/src/mytypes.h +++ b/src/src/mytypes.h @@ -1,10 +1,10 @@ -/* $Cambridge: exim/src/src/mytypes.h,v 1.3 2006/02/07 11:19:00 ph10 Exp $ */ +/* $Cambridge: exim/src/src/mytypes.h,v 1.7 2009/11/16 19:50:37 nm4 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2006 */ +/* Copyright (c) University of Cambridge 1995 - 2009 */ /* See the file NOTICE for conditions of use and distribution. */ @@ -15,19 +15,26 @@ local_scan.h includes it and exim.h includes them both (to get this earlier). */ #ifndef MYTYPES_H #define MYTYPES_H - +#ifndef FALSE #define FALSE 0 +#endif + +#ifndef TRUE #define TRUE 1 +#endif + +#ifndef TRUE_UNSET #define TRUE_UNSET 2 +#endif /* If gcc is being used to compile Exim, we can use its facility for checking the arguments of printf-like functions. This is done by a macro. */ #ifdef __GNUC__ -#define PRINTF_FUNCTION __attribute__((format(printf,1,2))) +#define PRINTF_FUNCTION(A,B) __attribute__((format(printf,A,B))) #else -#define PRINTF_FUNCTION +#define PRINTF_FUNCTION(A,B) #endif