mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
21 lines
225 B
C
21 lines
225 B
C
|
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 ();
|
||
|
}
|