gdb/dwarf: create multiple cooked index shards when reading .debug_names
[binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-console.c
blobba6345490478eec6bef165abaa7e9ffab17340f5
1 #include <unistd.h>
3 void
4 hello ()
6 char *hello = "Hello \\\"!\r\n";
7 int i;
8 for (i = 0; hello[i]; i++)
9 write (1, hello + i, 1);
12 int
13 main ()
15 hello ();
17 return 0; /* after-hello */