Add mi/ and testsuite/gdb.mi/ subdirectories.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-console.c
1 void
2 hello ()
3 {
4 char *hello = "Hello \\\"!\r\n";
5 int i;
6 for (i = 0; hello[i]; i++)
7 write (1, hello + i, 1);
8 }
9
10 int
11 main ()
12 {
13 hello ();
14 }
15 /*
16 Local variables:
17 change-log-default-name: "ChangeLog-mi"
18 End:
19 */
20
This page took 0.032841 seconds and 4 git commands to generate.