cdecl-blocks
cdecl-blocks copied to clipboard
"static volatile X" not supported
The combination of "static" and "volatile" seems to be problematic, as tested on http://cdecl.org : "static volatile int asdf" => syntax error
Strangly enough static volatile * int f
works.
static int volatile asdf
works