view src/unexfx2800.c @ 3771:78c629b32fd9

* configure.in: Move clause for PC-compatible i386 box to the end of the case statement, to avoid masking configurations below. * configure.in: Add support for HP/UX versions 7, 8, and 9 on the HP 68000 machines.
author Jim Blandy <jimb@redhat.com>
date Wed, 16 Jun 1993 21:53:54 +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");
}