diff src/unexcw.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 29c45c1b64f3
children ab71ad6ff3dd
line wrap: on
line diff
--- a/src/unexcw.c	Mon Sep 20 19:11:29 2004 +0000
+++ b/src/unexcw.c	Mon Sep 20 19:20:08 2004 +0000
@@ -97,8 +97,8 @@
 
 /* Dump out .data and .bss sections into a new executable.  */
 int
-unexec (char *out_name, char *in_name, uintptr_t start_data, 
-	uintptr_t d1, uintptr_t d2)
+unexec (char *out_name, char *in_name, uintptr_t UNUSED (start_data), 
+	uintptr_t UNUSED (d1), uintptr_t UNUSED (d2))
 {
   /* ugly nt hack - should be in lisp */
   int a_new, a_out = -1;