Mercurial > hg > xemacs-beta
comparison src/unexfx2800.c @ 2286:04bc9d2f42c7
[xemacs-hg @ 2004-09-20 19:18:55 by james]
Mark all unused parameters as unused. Also eliminate some unneeded local
variables.
author | james |
---|---|
date | Mon, 20 Sep 2004 19:20:08 +0000 |
parents | 376386a54a3c |
children | db7068430402 |
comparison
equal
deleted
inserted
replaced
2285:914c5afaac33 | 2286:04bc9d2f42c7 |
---|---|
18 Boston, MA 02111-1307, USA. */ | 18 Boston, MA 02111-1307, USA. */ |
19 | 19 |
20 /* Synched up with: FSF 19.31. */ | 20 /* Synched up with: FSF 19.31. */ |
21 | 21 |
22 #include <stdio.h> | 22 #include <stdio.h> |
23 #include "compiler.h" | |
23 | 24 |
24 unexec (new_name, a_name, data_start, bss_start, entry_address) | 25 unexec (new_name, a_name, data_start, bss_start, entry_address) |
25 char *new_name, *a_name; | 26 char *new_name, *a_name; |
26 unsigned data_start, bss_start, entry_address; | 27 unsigned UNUSED (data_start); |
28 unsigned UNUSED (bss_start); | |
29 unsigned UNUSED (entry_address); | |
27 { | 30 { |
28 int stat; | 31 int stat; |
29 | 32 |
30 stat = elf_write_modified_data (a_name, new_name); | 33 stat = elf_write_modified_data (a_name, new_name); |
31 if (stat < 0) | 34 if (stat < 0) |