summaryrefslogtreecommitdiff
path: root/src/unexec.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-09-23 18:37:12 +0000
committerRichard M. Stallman <rms@gnu.org>1994-09-23 18:37:12 +0000
commitb41b89cb4e56bafd02718c398425f08bac3f0d43 (patch)
tree16925557018b6b04f3d97c1c8c20da2dfe11e3bb /src/unexec.c
parent7a24f06e92fe3c9f77185a51bd43414cee330cb2 (diff)
downloademacs-b41b89cb4e56bafd02718c398425f08bac3f0d43.tar.gz
(copy_text_and_data): Delete some printf's.
Diffstat (limited to 'src/unexec.c')
-rw-r--r--src/unexec.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/unexec.c b/src/unexec.c
index 26e63fa55d8..d0ac5b4db2c 100644
--- a/src/unexec.c
+++ b/src/unexec.c
@@ -973,7 +973,6 @@ copy_text_and_data (new, a_out)
#endif
end = ptr + mcount_offset - EDATA_OFFSET;
- printf ("Writing from %08x to %08x\n", ptr, end);
write_segment (new, ptr, end);
@@ -982,14 +981,12 @@ copy_text_and_data (new, a_out)
proforma[2] = bss_end; /* becomes _minbrk */
proforma[3] = bss_end; /* becomes _curbrk */
- puts ("Writing 'args_proforma' (16 bytes)");
write (new, proforma, 16);
temp_ptr = ptr;
ptr = end + 16;
end = temp_ptr + hdr.a_text;
- printf ("Writing from %08x to %08x\n", ptr, end);
write_segment (new, ptr, end);
}