view src/unexfx2800.c @ 15462:6418750a8408 libc-1-92 libc-960621 libc-960622 libc-960623 libc-960624 libc-960625 libc-960626 libc-960627 libc-960628

Add support for PowerPC Linux
author Michael Meissner <gnu@the-meissners.org>
date Thu, 20 Jun 1996 16:20:05 +0000
parents 79ea818b6aed
children
line wrap: on
line source

/* Unexec for the Alliant FX/2800.  */

#include <stdio.h>

unexec (new_name, a_name, data_start, bss_start, entry_address)
     char *new_name, *a_name;
     unsigned data_start, bss_start, entry_address;
{
  int stat;
    
  stat = elf_write_modified_data (a_name, new_name);
  if (stat < 0)
    perror ("emacs: elf_write_modified_data");
  else if (stat > 0)
    fprintf (stderr, "Unspecified error from elf_write_modified_data.\n");
}