Document the requirement for interleaved code and declarations.

This commit is contained in:
Adam Jackson 2007-11-18 11:39:26 -05:00
parent d15339a92c
commit fac7e7e4e1

View File

@ -30,3 +30,4 @@ The server will not build if your toolchain does not support these extensions.
struct foo bar = { .baz = quux, .brian = "dog" }; struct foo bar = { .baz = quux, .brian = "dog" };
* variadic macros: macros with a variable number of arguments, e.g.: * variadic macros: macros with a variable number of arguments, e.g.:
#define DebugF(x, ...) /**/ #define DebugF(x, ...) /**/
* interleaved code and declarations: { foo = TRUE; int bar; do_stuff(); }