/****************************************************************************/
void
-process_file(char *ifile, char *ofile)
+process_file(const char *ifile, const char *ofile)
{
int old_flags, old_stack, new_flags, new_stack;
stream ifp, ofp;
/****************************************************************************/
void
-usage(char *s)
+usage(const char *s)
{
if (s)
fprintf(stderr, "%s\n", s);
main(int argc, char *argv[])
{
int c, noargs;
- char *ofile = NULL, *ifile;
+ const char *ofile = NULL, *ifile;
elf2flt_progname = argv[0];