Mercurial > hg > xemacs-beta
diff 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 |
line wrap: on
line diff
--- a/src/unexfx2800.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/unexfx2800.c Mon Sep 20 19:20:08 2004 +0000 @@ -20,10 +20,13 @@ /* Synched up with: FSF 19.31. */ #include <stdio.h> +#include "compiler.h" unexec (new_name, a_name, data_start, bss_start, entry_address) char *new_name, *a_name; - unsigned data_start, bss_start, entry_address; + unsigned UNUSED (data_start); + unsigned UNUSED (bss_start); + unsigned UNUSED (entry_address); { int stat;