X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fmytypes.h;h=dd88101844384127108e1de066d538e43a8eb4e6;hb=2f4df477ae05f0b7180fed5531e014f638a18555;hp=4d367a95b4b71ac0733e848095ecb2100225f189;hpb=c7c833c6172626ec216e9ecd650ff1fe975cc850;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/mytypes.h b/src/src/mytypes.h index 4d367a95b..dd8810184 100644 --- a/src/src/mytypes.h +++ b/src/src/mytypes.h @@ -14,15 +14,15 @@ local_scan.h includes it and exim.h includes them both (to get this earlier). */ #define MYTYPES_H #ifndef FALSE -#define FALSE 0 +# define FALSE 0 #endif #ifndef TRUE -#define TRUE 1 +# define TRUE 1 #endif #ifndef TRUE_UNSET -#define TRUE_UNSET 2 +# define TRUE_UNSET 2 #endif @@ -30,17 +30,17 @@ local_scan.h includes it and exim.h includes them both (to get this earlier). */ the arguments of printf-like functions. This is done by a macro. */ #if defined(__GNUC__) || defined(__clang__) -#define PRINTF_FUNCTION(A,B) __attribute__((format(printf,A,B))) -#define ARG_UNUSED __attribute__((__unused__)) +# define PRINTF_FUNCTION(A,B) __attribute__((format(printf,A,B))) +# define ARG_UNUSED __attribute__((__unused__)) #else -#define PRINTF_FUNCTION(A,B) -#define ARG_UNUSED /**/ +# define PRINTF_FUNCTION(A,B) +# define ARG_UNUSED /**/ #endif #ifdef WANT_DEEPER_PRINTF_CHECKS -#define ALMOST_PRINTF(A, B) PRINTF_FUNCTION(A, B) +# define ALMOST_PRINTF(A, B) PRINTF_FUNCTION(A, B) #else -#define ALMOST_PRINTF(A, B) +# define ALMOST_PRINTF(A, B) #endif