From: Andre Noll Date: Sun, 1 Jun 2008 12:21:58 +0000 (+0200) Subject: Cosmetics. X-Git-Tag: v0.0.2~20 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=b07dd17fd68523c0465e584ee492e697f0f5f704 Cosmetics. --- diff --git a/gcc-compat.h b/gcc-compat.h index 61c3c88..3d5fb28 100644 --- a/gcc-compat.h +++ b/gcc-compat.h @@ -4,14 +4,14 @@ # define __a_unused __attribute__ ((unused)) # define likely(x) __builtin_expect (!!(x), 1) # define unlikely(x) __builtin_expect (!!(x), 0) -/* - * p is the number of the "format string" parameter, and q is - * the number of the first variadic parameter +/* + * p is the number of the "format string" parameter, and q is + * the number of the first variadic parameter */ # define __printf(p,q) __attribute__ ((format (printf, p, q))) /* * as direct use of __printf(p,q) confuses doxygen, here are two extra macros - * for those values p,q that are actually used by paraslash. + * for those values p,q that are actually used. */ #define __printf_1_2 __printf(1,2) #define __printf_2_3 __printf(2,3)