xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/mi-read-memory.c (revision a04395531661c5e8d314125d5ae77d4cbedd5d73)
1 static char bytes[256];
2 
3 static short shorts[256];
4 
5 static void
6 initialize (void)
7 {
8   int i;
9   for (i = 0; i < sizeof (bytes); i++)
10     {
11       bytes[i] = i;
12       shorts[i] = i * 2;
13     }
14 }
15 
16 int
17 main ()
18 {
19   initialize ();
20 }
21