Sign in
gnu
/
binutils-gdb
/
refs/heads/users/linaro/binutils-2_25-branch
/
.
/
gdb
/
testsuite
/
gdb.mi
/
mi-console.c
blob: ffed9f0df051863d4f14a88cf6e758cffad9e07d [
file
] [
log
] [
blame
]
void
hello
()
{
char
*
hello
=
"Hello \\\"!\r\n"
;
int
i
;
for
(
i
=
0
;
hello
[
i
];
i
++)
write
(
1
,
hello
+
i
,
1
);
}
int
main
()
{
hello
();
}