2 Symbols for previous parameters were not available for the array dimension of a parameter.
8 #pragma disable_warning 85
10 void f(unsigned int j
, char d
[sizeof(j
)])
13 memcpy (d
, &j
, sizeof(j
));
19 unsigned int j
= 0xaa55;
22 ASSERT(!memcmp(&j
, d
, sizeof(j
)));