TLS SNI support for OpenSSL ($tls_sni)
[exim.git] / src / src / mytypes.h
index 5215777f8e369d9409e21e6a12278d5deb133ddf..ade294e5df82688cc5f1d4b1e0b9d85b5dfbf080 100644 (file)
@@ -31,8 +31,10 @@ 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__))
 #else
 #define PRINTF_FUNCTION(A,B)
+#define ARG_UNUSED  /**/
 #endif