summaryrefslogtreecommitdiffstats
path: root/src/include/compiler.h
diff options
context:
space:
mode:
authorMichael Brown2005-05-18 17:02:23 +0200
committerMichael Brown2005-05-18 17:02:23 +0200
commit484d6e7d24f5720b904bb93beafebcdd1c99db12 (patch)
treec8c7624ab95aa23c39796e4c45d747ac0a0c053f /src/include/compiler.h
parentAdd doxygen documentation (diff)
downloadipxe-484d6e7d24f5720b904bb93beafebcdd1c99db12.tar.gz
ipxe-484d6e7d24f5720b904bb93beafebcdd1c99db12.tar.xz
ipxe-484d6e7d24f5720b904bb93beafebcdd1c99db12.zip
__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.
Diffstat (limited to 'src/include/compiler.h')
-rw-r--r--src/include/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/compiler.h b/src/include/compiler.h
index b59ffea9..d02078b0 100644
--- a/src/include/compiler.h
+++ b/src/include/compiler.h
@@ -7,7 +7,7 @@
*
*/
#ifdef DOXYGEN
-#define __attribute__(...)
+#define __attribute__(x)
#endif
/*