From: Michael Brown Date: Wed, 18 May 2005 15:02:23 +0000 (+0000) Subject: __attribute__ does not need to be treated as a variadic macro, since X-Git-Tag: v0.9.3~1659 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=484d6e7d24f5720b904bb93beafebcdd1c99db12;p=thirdparty%2Fipxe.git __attribute__ does not need to be treated as a variadic macro, since it is always used as __attribute__((...)). Since variadic macros seem to confuse poor doxygen, change it to a single-valued macro. --- diff --git a/src/include/compiler.h b/src/include/compiler.h index b59ffea99..d02078b06 100644 --- a/src/include/compiler.h +++ b/src/include/compiler.h @@ -7,7 +7,7 @@ * */ #ifdef DOXYGEN -#define __attribute__(...) +#define __attribute__(x) #endif /*