Mercurial > hg > xemacs-beta
diff src/unexnt.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 | e22b0213b713 |
children | ecf1ebac70d8 |
line wrap: on
line diff
--- a/src/unexnt.c Mon Sep 20 19:11:29 2004 +0000 +++ b/src/unexnt.c Mon Sep 20 19:20:08 2004 +0000 @@ -180,8 +180,8 @@ /* Dump out .data and .bss sections into a new executable. */ int -unexec (Ibyte *new_name, Ibyte *old_name, unsigned int start_data, - unsigned int start_bss, unsigned int entry_address) +unexec (Ibyte *new_name, Ibyte *old_name, unsigned int UNUSED (start_data), + unsigned int UNUSED (start_bss), unsigned int UNUSED (entry_address)) { file_data in_file, out_file; Ibyte *out_filename = alloca_ibytes (qxestrlen (new_name) + 10); @@ -479,7 +479,7 @@ } static void -dump_bss_and_heap (file_data *p_infile, file_data *p_outfile) +dump_bss_and_heap (file_data *UNUSED (p_infile), file_data *p_outfile) { UChar_Binary *heap_data; unsigned long size, index;