annotate src/unexfx2800.c @ 15013:aad88afa6a0c libc-960413 libc-960414 libc-960415 libc-960416 libc-960417 libc-960418 libc-960419 libc-960420 libc-960421 libc-960422 libc-960423 libc-960424 libc-960425 libc-960426 libc-960427 libc-960428 libc-960429 libc-960430 libc-960501 libc-960502 libc-960503 libc-960504 libc-960505 libc-960506 libc-960507 libc-960508 libc-960509 libc-960510 libc-960511 libc-960512 libc-960513 libc-960514 libc-960515 libc-960516 libc-960517 libc-960518 libc-960519 libc-960520

* config.guess: Combine two OSF1 rules. Also recognize field test versions. From mjr@zk3.dec.com. * config.guess (dgux): Use /usr/bin/uname rather than uname, because GNU uname does not support -p. From pmr@pajato.com.
author Per Bothner <bothner@cygnus.com>
date Sat, 13 Apr 1996 00:06:54 +0000
parents 79ea818b6aed
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
524
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Unexec for the Alliant FX/2800. */
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3 #include <stdio.h>
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5 unexec (new_name, a_name, data_start, bss_start, entry_address)
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 char *new_name, *a_name;
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 unsigned data_start, bss_start, entry_address;
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 {
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 int stat;
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 stat = elf_write_modified_data (a_name, new_name);
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 if (stat < 0)
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 perror ("emacs: elf_write_modified_data");
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 else if (stat > 0)
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 fprintf (stderr, "Unspecified error from elf_write_modified_data.\n");
79ea818b6aed entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 }