Mercurial > hg > xemacs-beta
comparison src/unexconvex.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 | b39c14581166 |
children | facf3239ba30 |
comparison
equal
deleted
inserted
replaced
2285:914c5afaac33 | 2286:04bc9d2f42c7 |
---|---|
178 #include <machine/filehdr.h> | 178 #include <machine/filehdr.h> |
179 #include <machine/opthdr.h> | 179 #include <machine/opthdr.h> |
180 #include <machine/scnhdr.h> | 180 #include <machine/scnhdr.h> |
181 #include <machine/pte.h> | 181 #include <machine/pte.h> |
182 | 182 |
183 #include "compiler.h" | |
184 | |
183 static long block_copy_start; /* Old executable start point */ | 185 static long block_copy_start; /* Old executable start point */ |
184 static struct filehdr f_hdr; /* File header */ | 186 static struct filehdr f_hdr; /* File header */ |
185 static struct opthdr f_ohdr; /* Optional file header (a.out) */ | 187 static struct opthdr f_ohdr; /* Optional file header (a.out) */ |
186 long bias; /* Bias to add for growth */ | 188 long bias; /* Bias to add for growth */ |
187 #define SYMS_START block_copy_start | 189 #define SYMS_START block_copy_start |
264 struct scnhdr *f_tbhdr; /* Thread Bss section header */ | 266 struct scnhdr *f_tbhdr; /* Thread Bss section header */ |
265 | 267 |
266 static int | 268 static int |
267 make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) | 269 make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) |
268 int new, a_out; | 270 int new, a_out; |
269 unsigned data_start, bss_start, entry_address; | 271 unsigned data_start, bss_start; |
272 unsigned UNUSED (entry_address); | |
270 char *a_name; | 273 char *a_name; |
271 char *new_name; | 274 char *new_name; |
272 { | 275 { |
273 int scns; | 276 int scns; |
274 unsigned int bss_end; | 277 unsigned int bss_end; |