binutils-gdb/gdb/testsuite/gdb.mi/mi-console.c

21 lines
220 B
C

void
hello ()
{
char *hello = "Hello \\\"!\r\n";
int i;
for (i = 0; hello[i]; i++)
write (1, hello + i, 1);
}
int
main ()
{
hello ();
}
/*
Local variables:
change-log-default-name: "ChangeLog-mi"
End:
*/