Commit ed18ec55 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

doc/developer.texi: Add variadic macros to allowed C language features

They are used in several places like CBS.
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent 59c993e2
...@@ -131,6 +131,9 @@ compound literals (@samp{x = (struct s) @{ 17, 23 @};}). ...@@ -131,6 +131,9 @@ compound literals (@samp{x = (struct s) @{ 17, 23 @};}).
@item @item
for loops with variable definition (@samp{for (int i = 0; i < 8; i++)}); for loops with variable definition (@samp{for (int i = 0; i < 8; i++)});
@item
Variadic macros (@samp{#define ARRAY(nb, ...) (int[nb + 1])@{ nb, __VA_ARGS__ @}});
@item @item
Implementation defined behavior for signed integers is assumed to match the Implementation defined behavior for signed integers is assumed to match the
expected behavior for two's complement. Non representable values in integer expected behavior for two's complement. Non representable values in integer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment