aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi/mi-console.c
blob: 0cd2243c4f25fbb5af603340d3657b8740a81446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void
hello ()
{
  char *hello = "Hello \\\"!\r\n";
  int i;
  for (i = 0; hello[i]; i++)
    write (1, hello + i, 1);
}

int
main ()
{
  hello ();
} /* after-hello */