Update the copyright notice of some of the files I missed
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-read-memory.c
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 }
This page took 0.037484 seconds and 4 git commands to generate.