comparison cli-main.c @ 299:740e782679be ucc-axis-hack

Various changes to compile+kind of run on UCC's axis board. Note that fprintf(stdin -> printf( accounts for many of the changes
author Matt Johnston <matt@ucc.asn.au>
date Sat, 25 Mar 2006 12:57:09 +0000
parents 0cfba3034be5
children
comparison
equal deleted inserted replaced
266:e37b160c414c 299:740e782679be
105 105
106 char printbuf[1024]; 106 char printbuf[1024];
107 107
108 vsnprintf(printbuf, sizeof(printbuf), format, param); 108 vsnprintf(printbuf, sizeof(printbuf), format, param);
109 109
110 fprintf(stderr, "%s: %s\n", cli_opts.progname, printbuf); 110 printf( "%s: %s\n", cli_opts.progname, printbuf);
111 111
112 } 112 }