* breakpoint.c, breakpoint.h (breakpoint_init_inferior): New function
[deliverable/binutils-gdb.git] / gdb / altos-xdep.c
index fafcb184231cd0be8d3c00691d54dc60e2a8ea2c..ce2a5a759479060d4cfe1bf624e11d2b144a434b 100644 (file)
@@ -18,7 +18,6 @@ You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-#include <stdio.h>
 #include "defs.h"
 #include "frame.h"
 #include "inferior.h"
@@ -81,7 +80,7 @@ core_file_command (filename, from_tty)
       make_cleanup (free, filename);
       
       if (have_inferior_p ())
-       error ("To look at a core file, you must kill the inferior with \"kill\".");
+       error ("To look at a core file, you must kill the program with \"kill\".");
       corechan = open (filename, O_RDONLY, 0);
       if (corechan < 0)
        perror_with_name (filename);
@@ -116,7 +115,7 @@ core_file_command (filename, from_tty)
        if (reg_offset > NBPG * UPAGES)
          reg_offset -= KERNEL_U_ADDR;
 
-       bcopy (&u.u_exdata, &core_aouthdr, sizeof (AOUTHDR));
+       memcpy (&core_aouthdr, &u.u_exdata, sizeof (AOUTHDR));
        printf ("Core file is from \"%s\".\n", u.u_comm);
 
        /* I don't know where to find this info.
This page took 0.023537 seconds and 4 git commands to generate.