diff options
Diffstat (limited to 'runtime/tools/ccfilter.c')
-rw-r--r-- | runtime/tools/ccfilter.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/tools/ccfilter.c b/runtime/tools/ccfilter.c index 270333910..f5d560dba 100644 --- a/runtime/tools/ccfilter.c +++ b/runtime/tools/ccfilter.c @@ -85,7 +85,8 @@ const char USAGE[] = int ShowUsage( char *szError ) -{ int i; +{ + int i; fprintf( stderr, USAGE ); @@ -101,7 +102,8 @@ int ShowUsage( char *szError ) return 0; } -char *echogets(char *s, int echo) { +char *echogets(char *s, int echo) +{ char * const retval=fgets(s, LINELENGTH, stdin); if (echo!=0 && retval!=NULL) { fputs(retval, stderr); |