Does p.82, lines 13-15, imply that the following is not standard conforming,
or does p.84, lines 31-34, provide an escape hatch?
James Jones
--------------------begin code fragment
static int i; /* tentative definition, internal linkage */
int
woof(void)
{
return ++i; /* usage other than in sizeof() */
}
--------------------end code fragment