import gdb-1999-07-05 snapshot

This commit is contained in:
Jason Molenda
1999-07-05 17:58:44 +00:00
parent f11523b013
commit 43ff13b418
41 changed files with 1885 additions and 789 deletions

View File

@@ -197,10 +197,7 @@ gdb_os_write_stdout (p, buf, len)
{
b[0] = buf[i];
b[1] = 0;
if (target_output_hook)
target_output_hook (b);
else
fputs_filtered (b, gdb_stdout);
fputs_unfiltered (b, gdb_stdtarg);
}
return len;
}
@@ -229,10 +226,7 @@ gdb_os_write_stderr (p, buf, len)
{
b[0] = buf[i];
b[1] = 0;
if (target_output_hook)
target_output_hook (b);
else
fputs_filtered (b, gdb_stderr);
fputs_unfiltered (b, gdb_stdtarg);
}
return len;
}