Is there a way to declare space in a struct as unused / filler / pad, in such as way as to not have to provide an identifier?

For example,

Code:
struct foo { 
   int  .  ;      // just 4 bytes, padding for later, don't need it now 
   int myval ; 
} ;