changeset 9025:52858112c2ab

(copy_text_and_data): Delete some printf's.
author Richard M. Stallman <rms@gnu.org>
date Fri, 23 Sep 1994 18:37:12 +0000
parents d8000a9e6003
children 74fd93bc3568
files src/unexec.c
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/unexec.c	Fri Sep 23 18:35:32 1994 +0000
+++ b/src/unexec.c	Fri Sep 23 18:37:12 1994 +0000
@@ -973,7 +973,6 @@
 #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 @@
     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);
   }