From fac7e7e4e1809e865b9b3cf5b7eb69ba9d3a3759 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Sun, 18 Nov 2007 11:39:26 -0500 Subject: [PATCH] Document the requirement for interleaved code and declarations. --- doc/c-extensions | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/c-extensions b/doc/c-extensions index db2ba7d77..e1b222b9f 100644 --- a/doc/c-extensions +++ b/doc/c-extensions @@ -30,3 +30,4 @@ The server will not build if your toolchain does not support these extensions. struct foo bar = { .baz = quux, .brian = "dog" }; * variadic macros: macros with a variable number of arguments, e.g.: #define DebugF(x, ...) /**/ + * interleaved code and declarations: { foo = TRUE; int bar; do_stuff(); }