blob: 7a87c6418568c8bd0c40e57bcb034b625de26b5a [file] [log] [blame]
static char bytes[256];
static short shorts[256];
static void
initialize (void)
{
int i;
for (i = 0; i < sizeof (bytes); i++)
{
bytes[i] = i;
shorts[i] = i * 2;
}
}
int
main ()
{
initialize ();
}