summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAdam Jackson <ajax@aspartame.nwnk.net>2007-11-18 11:39:26 -0500
committerAdam Jackson <ajax@aspartame.nwnk.net>2007-11-18 11:39:26 -0500
commitfac7e7e4e1809e865b9b3cf5b7eb69ba9d3a3759 (patch)
tree77999d86af64341c5b346cf7afdc900a71437e16 /doc
parentd15339a92c4d689d2ab8a86e4f10107f3e45eff8 (diff)
Document the requirement for interleaved code and declarations.
Diffstat (limited to 'doc')
-rw-r--r--doc/c-extensions1
1 files changed, 1 insertions, 0 deletions
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(); }